Here is the explanation -
Having sides a, b, and 11 is a RIGHT angle triangle , Hence using Pythagoras theorem -
CASE 1 -> a*a + b*b = 11*11 (Assuming 11 is the longest side)
or CASE 2 -> 11*11 + b*b = a*a (Assuming a is the longest side)
Do not forget that we are also given all sides are integer.
Consider CASE 1 now - Can you think of any set of two integers (both lest than 11 ) such as
a*a + b*b = 11*11 = 121
we have perfect squares less than 121 as - 1, 4, 9, 16, 25, 36, 49, 64, 81, 100
If you add any of the above two you will never get sum as 121 .
Hence CASE 1 is
VOIDConsider CASE 2 now -11*11 + b*b = a*a
then 11*11 = a*a + b*b => 121 = (a+b)(a-b) - Equation 1
As we are given All sides are integer -> a, b are integers -> 'a+b' and 'a-b' are also integers.
Equation 1 states that 121 is [color=#0072bc]product of two integers and 121 is a very interesting number in the way that it has only two combination of
product of two integers Combination 1 : a+b = 11 also a-b = 11 -> This case is invalid as it will result that one side of triangle b =0
Combination 2 : a+b = 121 and a-b=1 -> This case is Valid and gives us the answer that 'a+b' = 121
[/color]
Hence option ETricky question indeed !