| |||||
|
c-value
- A c-value is a function parameter.
For example, let's take the function: x2 - c. We will define x to be initially zero and we will start out with our c-value, our paramater, to be one. Lets, iterate this function! x0 = 02 - 1 = 0 - 1 = -1 x1 = -12 - 1 = 1 - 1 = 0 x2 = 02 - 1 = 0 - 1 = -1 x3 = -12 - 1 = 1 - 1 = 0 x4 = 02 - 1 = 0 - 1 = -1Apparently this paramater, or c-value, gives us an oscillator. What about c=3? x0 = 02 - 3 = 0 - 3 = -3 x1 = -32 - 3 = 9 - 3 = 6 x2 = 62 - 3 = 36 - 3 = 33 x3 = 332 - 3 = 1089 - 3 = 1086 x4 = 10862 - 3 = 1179396 - 3 = 1179393Looks like this is going to head out to infinity. Thus, different c-values can give different behaviors. What would happen for c=2? |