Warning: The real difficulty of this problem should be level 5. Don't attempt to solve the explicit formula for { a n } .
This problem will give you a little taste of the complexity of the mandelbrot set , even if only defined on real numbers:
{ a n } is a sequence such that a 1 = α , a n + 1 = a n 2 + β , α , β ∈ R .
Which value of β will always satisfy a 1 0 > 1 0 regardless of what α is?
Try not to use some kind of computer program.
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.
If I've done my quick math correctly, the end of the first line should be -90 rather than -90.25 (it makes no difference to the overall point). Very nice solution process!
Log in to reply
Whoops, thanks for flagging.:
2 1 + 4 1 − β = 1 0 ⟹ ∣ 4 1 − β ∣ = 9 . 5 2 = 9 0 . 2 5 .
Log in to reply
1/2 + (1/4 - (-90))^.5 = 1/2 + (1/4 + 90)^.5 = 1/2 + (90.25)^.5 = 1/2 + 9.5 = 10
I'm actually quite impressed! I don't think there is a simple approach here, but you've still made it. In fact, you can eliminate another three choices by observing the fixed point first. It's way better than the official answer which involves hairy calculations.
How do you know that there is a fixed point?
In fact, this solution is not the essence of it.
Problem Loading...
Note Loading...
Set Loading...
Observing fixed points: a n = a n + 1 = a n 2 + β ⟹ ( a n − 2 1 ) 2 + β − 4 1 ⟹ a n = 2 1 + 4 1 − β , which has a solution ≤ 1 0 for − 9 0 ≤ β ≤ 4 1 .
Hence, for all values of β in this range, there exist a fixed point ≤ 1 0 .
2 1 is the only solution outside of this range:
With β = 2 1 :
a 1 ≥ 2 1
a 2 ≥ 4 3
a 3 ≥ 1 6 1 7 > 1
a 4 > 2 3
a 5 > 4 9
a 6 > 1 6 8 1 > 5
a 1 0 > 5 1 6 > 1 0