Oct 15th
I haven't done much this week: I went right from being sick to being really depressed, which makes it hard for me to work.
Read.
read chapter 9 and part of 10 in Feldman: chaos and SDIC, sensitive dependence on initial conditions. Straight forward.
finished chapter 1 of Alligood, sections 1.7: SDIC and 1.8: Itineraries. I'd like to discuss itineraries more in class.
Play with python yield and generators. Draw basic bifurcation diagram in Ipy notebook.
Basically, we make a generator function, then make a generator with that function. The yield keyword allows the generator to send back a value, while also keeping track of where it left off. Thus the generator can start executing again from the next line where it left off.
Looked at what you wrote last class for the logistic map.