Wednesday

Prove that (sqrt(2) - 1) = 1/(1 + sqrt(2)).

Prove that "(sqrt(2) - 1) = 1/(1 + sqrt(2))".

Some solution steps:

sqrt(2) - 1
= ( sqrt(2)(1+sqrt(2)) - (1+sqrt(2)) ) / (1+sqrt(2))
= ( sqrt(2) + 2 - 1 - sqrt(2) ) / (1+sqrt(2))
= 1 / (1+sqrt(2)) qed.

No comments:

Newton-Raphson Method in C++

The Newton Raphson Method is an open method used to find the roots of a function. It employs the technique of linear approximation and invol...