Q1.
Check if a triangle exists for each of the following set of lengths: (a) 1, 100, 100 (b) 3, 6, 9 (c) 1, 1, 5 (d) 5, 10, 12
Answer
Compare the largest length with the sum of the other two.
| Set | Largest vs sum of other two | Triangle? |
|---|---|---|
| (a) 1, 100, 100 | 100 < 1 + 100 = 101 | Exists |
| (b) 3, 6, 9 | 9 = 3 + 6 | Does not exist |
| (c) 1, 1, 5 | 5 > 1 + 1 = 2 | Does not exist |
| (d) 5, 10, 12 | 12 < 5 + 10 = 15 | Exists |
Why it happens: In (b) the sum is exactly equal, not less. The two circles just touch, so the third "vertex" lands on the base itself and the figure flattens into a straight line — equality is not good enough. In (a) the margin is only 1 unit, so the triangle is real but extremely thin.