sqrt(x+sqrt(x+sqrt(x+sqrt(x))))=2;
Find the value of x?
Answer Posted / soundararajan krishnan
I think the actual question may be like
sqrt(x+sqrt(x+sqrt(x+sqrt(x+...))))=2;
Find the value of x?
When we solve this the value of x is 2.
Let A = sqrt(x+sqrt(x+sqrt(x+sqrt(x+...)))) ------(1)
We can write this as,
A = sqrt (x+A) ------(2) using formula (1)
Since A = sqrt(x+sqrt(x+sqrt(x+sqrt(x+...)))) = 2,
we can write the equation (2) as,
2 = sqrt(x+2)
square this equation,
4 = x+2
Then x = 2.
| Is This Answer Correct ? | 20 Yes | 4 No |
Post New Answer View All Answers
What is the difference between text and binary i/o?
What is d scanf?
What are the advantages of c preprocessor?
What is your stream meaning?
Why & is used in scanf in c?
What does %c do in c?
Are c and c++ the same?
When should I declare a function?
In a header file whether functions are declared or defined?
write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare. You will then tabulate this information in another file.
What is pass by reference in functions?
Explain how do you generate random numbers in c?
Why cant I open a file by its explicit path?
What is the meaning of 2d in c?
Write a c program to build a heap method using Pointer to function and pointer to structure ?