Find the positive real value of 6 + 6 + 6 + . . . . . .
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Consider given =y then given can be written as (6+y)^(1/2)=y
Squaring both sides we have y^2-y-6=0 i.e
(y+2)(y-3)=0 i.e y=-2 and y=+3 rejecting -ve value we have y=given=3
Let , 6 + 6 + 6 ⋯ = x ⇒ 6 + x = x ⇒ ( 6 + x ) 2 = x 2 ⇒ 6 + x = x 2 ⇒ x 2 − x − 6 = 0 ⇒ ( x − 3 ) ( x + 2 ) = 0 ⇒ x = 3 , − 2 S o , x = 3
found this with this simple code .. double x=sqrt(6.0);
for(int i=100;i>=1;i--)
{
x= sqrt(6+x);
}
Let x = 6 + 6 + 6 + ⋯ Then x = 6 + x Simplifying this, we get: x = 6 + x x 2 = 6 + x x 2 − x − 6 = 0 Plugging the values in the quadratic formula, we get: 2 ( 1 ) − ( − 1 ) ± ( − 1 ) 2 − 4 ( 1 ) ( − 6 ) = 2 1 ± 1 + 2 4 = 2 1 ± 2 5 = 2 1 ± 5 Solving this we get x = − 2 o r x = 3 as the question has asked for the positive value,so the answer is x = 3
Problem Loading...
Note Loading...
Set Loading...
The equation:
6 + 6 + 6 ⋯ = x
Can be simplified to ⇒ 6 + x = x
So:
( 6 + x ) 2 = x 2 ⇒ 6 + x = x 2 ⇒ x 2 − x − 6 = 0
Then:
( x − 3 ) ( x + 2 ) Clearly ⇒ x = 3