A right triangle has a certain angle twice of another angle in the triangle. Find the maximum number of integer side lengths it has.
How I tried working on the problem:
There are $2$ possible triangular angles that satisfy this,
- $30, 60, 90$ triangle
- $45, 45, 90$ triangle
For $30, 60, 90$ triangle, the ratio is $1:\sqrt{3}:2$. For $45, 45, 90$ triangle, the ratio is $1:1:\sqrt{2}$.
How should I continue working on this problem?