Looking for simple iteration method

  • Context: High School 
  • Thread starter Thread starter dmehling
  • Start date Start date
  • Tags Tags
    Method
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
3 replies · 4K views
dmehling
Messages
114
Reaction score
0
I'm looking for an easy way to perform simple iterations. For example using the equation: z^2 + c, although I don't need it to do complex numbers. Also, I would like the iterations to be listed in tabular form.
 
Mathematics news on Phys.org
It isn't very clear what you are asking. Iterations to do what? Solve f(x) = 0 by iteration?? Something like Newton's method? If you want results in a tabular form a spreadsheet might be just the ticket.
 
I think you might be the same person who asked about the Mandelbrot set. What you want to do is this

Set c.
  1. Set z with an initial value.
  2. Evaluate z^2 + c.
  3. Store the value of the previous step in z.
  4. Go to step 2.
This is the basic idea, but it is oversimplified, and is an infinite loop. What you are doing is getting a sequence z0, z1, z2, ...To keep the loop from iterating forever, you want to exit the loop when |z| gets above a certain size. It's been a while since I looked at any Mandelbrot algorithms, but maybe the cutoff is |z| >= 2.

Hope this helps.
 
Yes, that is what I need to do. However, I'm not sure how I would actually implement this. I have no real experience in programming. I am looking for the easiest way of doing it.