1 8 + 3 1 8 + 3 1 8 + 3 1 8 + … = ?
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.
This doesn't explain why x has to exist. It's possible that the expression diverges.
Log in to reply
He probably does not understand what you are saying. Don't worry he will take time :P
Why under root 18+3x =x?
This is just another variant of the classic x + x + … problem.
Observe that the expression is the limit of the sequence { a n } where a 1 = 1 8 , a n + 1 = 1 8 + 3 a n for all n ≥ 1 . We claim that:
by induction on n .
As the base case, 0 < a 1 < 6 is clear. It can also be computed that a 2 > a 1 : since 1 8 + 3 1 8 > 1 8 and the function x ↦ x is increasing, 1 8 + 3 1 8 > 1 8 as well, showing that a 2 > a 1 .
Suppose we have proven the claim for n = n 0 − 1 , where n 0 ≥ 2 . We'd like to prove the claim for n = n 0 .
We have,
a n 0 = 1 8 + 3 a n 0 − 1 > 1 8 + 3 ⋅ 0 = 1 8 > 0
Also,
a n 0 = 1 8 + 3 a n 0 − 1 < 1 8 + 3 ⋅ 6 = 3 6 = 6
Finally,
a n 0 2 − a n 0 − 1 2 = ( 1 8 + 3 a n 0 − 1 ) − a n 0 − 1 2 = − ( a n 0 − 1 + 3 ) ( a n 0 − 1 − 6 )
Since 0 < a n 0 − 1 < 6 by inductive hypothesis, we have a n 0 − 1 + 3 > 0 and a n 0 − 1 − 6 < 0 , giving − ( a n 0 − 1 + 3 ) ( a n 0 − 1 − 6 ) > 0 . But − ( a n 0 − 1 + 3 ) ( a n 0 − 1 − 6 ) = a n 0 2 − a n 0 − 1 2 , so a n 0 2 − a n 0 − 1 2 > 0 . This gives ( a n 0 + a n 0 − 1 ) ( a n 0 − a n 0 − 1 ) > 0 , and since a n 0 + a n 0 − 1 > 0 , we can divide both sides by a n 0 + a n 0 − 1 without changing the direction of the inequality, giving a n 0 − a n 0 − 1 > 0 or a n 0 > a n 0 − 1 . This proves the inductive claim.
Since { a n } is a sequence of real numbers that is increasing and bounded, it has a limit L . This limit satisfies L = 1 8 + 3 L , or,
L 2 L 2 − 3 L − 1 8 ( L + 3 ) ( L − 6 ) = 1 8 + 3 L = 0 = 0
This gives L = − 3 or L = 6 . Since { a n } is increasing and a 1 > 0 > − 3 , clearly the limit cannot be − 3 , and thus the limit is 6 .
A thorough analysis. Great!
you need to said by completeness theorem the limit exist
Log in to reply
Good point; added above, with a n being a sequence of real numbers. (Real numbers is complete so we can invoke the monotone convergence theorem.)
Let's keep this as simple as we can while still being rigorous.
Consider the continuous function f ( x ) = 1 8 + 3 x defined on [ 0 , 6 ] .
We start with a few straightforward observations: (a) f ( x ) is increasing, (b) f ( 6 ) = 6 , (c) f ( x ) > x for x < 6 , (d) The range of f ( x ) is [ 1 8 , 6 ] , by properties (a) and (b), so that we can iterate f ( x ) since the range is a subset of the domain.
Now consider the sequence recursively defined by a 1 = 1 8 and a n + 1 = f ( a n ) . By properties (c) and (d), this sequence is increasing and bounded by 6, so that it has a limit L ≤ 6 by completeness. By continuity of f ( x ) , we have f ( L ) = lim n → ∞ f ( a n ) = lim n → ∞ a n + 1 = L , so that L = 6 by properties (b) and (c).
you need to prove the existence of limit by using completeness theorem
Log in to reply
how do we do that? i don't know what completness theorem is
We can say that the solution is the last term of the series a n = 1 8 + 3 a n − 1 ; a 0 = 1 .
We proceed by hoping this series converges, and writing a program that iteratively calculates the next value in the series.
import math
a = 1
for i in range(20):
a = math.sqrt(18 + a * 3)
print(a)
The values of a converge to 6 at the degree of accuracy of a float.
Let y = √ ( 1 8 + 3 √ ( 1 8 + 3 √ ( 1 8 + 3 √ 1 8 + . . . . . . Square RHS and LHS
y 2 = 1 8 + 3 y
After solving the above quadratic equation, We get y = 6
For clarity, you should explain why y = − 3 .
LET, the given problem be taken as a function on x where 18+3sqrt(18+.....))))..... be taken as x. now, f(x)= sqrt(18+3sqrt(18+3sqrt)18+....))))))... = sqrt(x) so by property of function any x under sqrt is > or = 0. so x is positive. solving the equation in the form of quadratics we get, x=6 or x=-3. but x is +ve. so x=6
Let x be the required number. Then we note that (x^2)=18+3x, which is the quadratic equation (x^2)-3x-18=0. Factoring the right-hand side of the equation, we obtain (x+3)(x-6)=0 so that x=-3 or x=6. But x cannot take negative values. So x=6 is the only solution. Therefore, the answer is 6.
I'm curious why answer can't be negative. Square root of something came me plus or minus, right?
By definition a radical sign means the positive square root.
Let x be the expression, therefore
x=√(18+3√(18+3√(18+......
x=√(18+3x)
x² =18+3x
x²-3x-18=0
(x+3)(x-6)=0
x=-3;x=6
Ignoring complex answers(√negative number)
Therefore, x=6
For clarity, you should explain why x = − 3 .
if we consider that the problem statement defines continuous additive growth which converges to value x=6 & then we take x=-3 as the answer this means we expect continuous reduction & finally converging to x=-3, that violate our assumption in first statement. Thus correct answer is 6.
Bcoz √ x^2x^2=|x| i.e. always +ve
Problem Loading...
Note Loading...
Set Loading...
According to the question, 1 8 + 3 1 8 + 3 1 8 + 3 1 8 + … = x
Or, 1 8 + 3 x = x
Squaring both the sides , 1 8 + 3 x = x 2
Or, x 2 − 3 x − 1 8 = 0
Or, x 2 − 6 x + 3 x − 1 8 = 0
Or, x ( x − 6 ) + 3 ( x − 6 )
Or, ( x − 6 ) ( x + 3 )
Therefore, we get x = 6 or, x = − 3
As the answer can't be negative we can ignore the second value of x .
Therefore, x = 6 , i.e. 1 8 + 3 1 8 + 3 1 8 + 3 1 8 + … = 6