formula of formulas

So far, our formulas have been arithmetic instructions involving domain numbers. We have also seen functions defined by repeating values. We can stretch the idea of repeating to recursive values. That is function values that depend on other values of the same function.

The values of the factorial function depend on previous values of the factorial function.

The values of the Fibonacci function depend on previous values of the Fibonacci function.

Recursively defined functions mimic periodic functions. Both use “previous” values. Periodic functions repeat the “previous” values, while recursive functions use these “previous” values within more computation.

Equations such as

  • \(Factorial(n) = n \cdot Factorial(n-1)\)
  • \(Fibonacci(n) = Fibonacci(n-1) + Fibonacci(n-2)\)

are called functional equations. They define how function values relate to other function values.

ooooo-=-=-=-ooOoo-=-=-=-ooooo
more examples can be found by following this link
More Examples of Piecewise-Defined Functions

2025-01-07 02:30:15