

InterviewSolution
Saved Bookmarks
1. |
If `x=1+1/(3+1/(3+1/(2...oo)))` then the value of x isA. `sqrt(5/2)`B. `sqrt(3/2)`C. `sqrt(7/3)`D. `sqrt(5/3)` |
Answer» Correct Answer - 4 `x = 1 + (1)/(3+(1)/(2+(1)/(3+1/(2...oo))))` `= 1 + (1)/(3+(1)/(1 + x))` `= 1 + (1 + x)/(4 + 3x)` or `3x^(2) = 5` or `x = sqrt(5/3)` (as x is positive) |
|