InterviewSolution
Saved Bookmarks
| 1. |
Find all real solutions to `2^x+x^2=2-(1)/(2^x)`. |
|
Answer» Given equation is `2^(x) + (1)/(2^(x)) = 2 - x^(2)` Using A.M `ge` G.M., we have `2^(x) + (1)/(2^(x)) ge 2` But `2 - x^(2) le 2` So, given equation holds only if `2^(x) + (1)/(2^(x)) = 2 - x^(2) = 2` Therefore, x = 0 is the only solution. |
|