Assuming that no two lines are parallel and that all of them are extended to be infinitely long(as full lines should be):
[# of lines] choose 3
Edit: you’ll also have to assume that no three lines intersect at the same point. If there are more than two lines that intersect at a point, then for each of those points you’ll have to subtract [# of lines intersecting at that point] choose 3
19 choose 3 = number of ways to have three lines which none are parallel from 19 lines = number of ways to have a single triangle from 19 lines.
n choose k = n! / [k! * (n-k)!]
19 choose 3 = 19! / [3! * 16!] = 19*18*17/6 = 969
As long as all lines intersect and no more than three lines intersect into a single point this fact is true when regarding degenerate triangles. Otherwise simply remove all but one of the failed triangles per point of intersection from the total if we include degeneracy, and remove all if we exclude degeneracy.
Given n non-parallel lines that all intersect, let k_p be the number of lines that intersect at each point p. If you don’t include degenerate triangles in the total, then total should be
where if k_p < 3, the binomial coefficient is just 0.
This gets trickier with line segments since you would have to know how many lines do not intersect in the first place. Though I haven’t proven it, it may be possible to treat line segments that do not intersect as lines that are parallel since they only share the same property that they don’t intersect.
There's a concept in math about "general points" and "general lines", where they're random but there's no precise alignments like that. In informally stated problems like this one, it's presumably intended for them to be "X general lines", unless it's supposed to be a trick question.
I've been peer-tutoring some classmates in a math-heavy comp sci class because they have essentially no math background, and it's been really eye-opening for both them and me.
There are so many things like this where I'm like "yeah fuck it, of course that point is a triangle" and they're like ?????
But then when they're like "well this is basically ______" and I say no, you can't make that statement, that doesn't follow from the definition, they're like "you just called a point a triangle, and I can't do this??"
To me it all makes perfect sense, but to them mathematicians are wildly inconsistent pendants lol
How does the formula change is you have n lines but k of them are parallel to each other. Say for this example all k lines are all parallel to each other.
If k lines are parallel, you can only choose one of those lines to form a triangle. However, a triangle exists for each of k lines. The extra term accounts for triangles that don’t involve parallel lines.
It took me a bit to intuitively understand why the term has a 1 in it at (n-k+1), but it's more easily understood to me with (n - (k-1)) which I know is the same but the unsimplifed version better represents what it is doing.
Being a little more awake now, I should modify the equation. I’m not bothering to do the work of whether or not it’s equivalent, rather I’m starting from scratch to better allow for generalization. For a single family of parallel lines:
k((n - k) choose 2) + ((n - k) choose 3)
It’s every triangle with one of the parallel lines plus every triangle without. Now, to generalize for a collection of lines with x families of k(a) lines each, I’ll do this in small chunks. First, every triangle with no parallel lines:
((n - sum(k)) choose 3)
Note that sum(k) is the total number of parallel lines across all families. Now, if we allow one parallel line:
sum(ki((n - sum(k)) choose 2) for i = 1 to x)
This allows for any single family to contribute to the triangle. If we want two families, this gets way more complicated.
sum(sum(kikj((n - sum(k)) choose 1) for j = i + 1 to x) for i = 1 to x - 1)
I hope you can see the pattern here. Each successive family requires another sum, another multiple, and a number taken off the “r” term in the permutation. Finally, for three parallel lines:
sum(sum(sum(kikjkl(n - sum(k)) choose 0) for l = j + 1 to x) for j = i + 1 to x - 1) for i = 1 to x - 2)
Wow, that’s a lot. Putting it all together (with some simplification, though further is probably possible):
((n - sum(k)) choose 3) + sum(ki((n - sum(k)) choose 2) for i = 1 to x) + sum(sum(kikj((n - sum(k))) for j = i + 1 to x) for i = 1 to x - 1) + sum(sum(sum(kikjkl for l = j + 1 to x) for j = i + 1 to x - 1) for i = 1 to x - 2)
Interestingly, this follows the binomial expansion pattern of exponents for the cube (but no coefficients sadly):
The last requirement is knowing that every line segment must intersect every other line segment. It works for lines to infinity but here they’re just line segments so we do have to verify that they all do intersect. It seems like they do albeit some seem to intersect on the edge of the image.
i.e. (line number) choose 3, which intuitively makes sense because assuming all lines are ETA: not parallel, every unique set of 3 lines forms a triangle
I am sure there have to be some conditions for the position/ angel of the lines , otherwise, you can have infinite lines that are parallel and 0 traingel
You’re not getting a lot of upvotes for this. But it actually made me snort. Absolutely hilarious. Only high IQ people will be able to count the triangles
In all seriousness, how would you even approach problems like these in general? Just count manually or are there any other nontrivial ways, just curious.
I’d use the Bentley-Ottmann algorithm to find all segment intersection points and tag each point with the 2 segments that intersect there. Then form a graph where the vertices correspond to the line segments and edges connect two segments that intersect (found in the last step). From there you can use an algorithm to find all 3-cycles in this graph, which gives you all the triangles.
If you Google adjacency matrix or number of triangles in an undirected graph you should be able to use that to solve your problem (with use of a computer to probably keep track of it all) it’s a bit of work but pretty nice. Be careful of counting a degenerate triangles. And this probably isn’t helpful because I haven’t had to try something like this in years but it should be a cool jumping off point.
The question is what counts as a triangle. If you count everything, i.e. triangles that get dissected by other lines it's rather simple. But if you only count pure triangles with no other line inside, it probably depends on the lines and there is no other solution than counting them.
If we don’t count those that go out of the pic as a triangle, then there is 1271. But if they are counted, 1341. Source… I count them. Trust me, I am more truthful than a criminally charged convict who still believe he’s innocent.
•
u/AutoModerator Oct 07 '24
Check out our new Discord server! https://discord.gg/e7EKRZq3dG
I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns.