butiran

root in math

intro

example

flowchart ⚠

algorithm ⚠

  1. Start.
  2. Define initial and final value for $x$, e.g. $x_a$, $x_b$.
  3. Define step size to change $x$, e.g. $\Delta x$.
  4. Initiate $x = x_a$.
  5. If $f(x) = 0$ display message “$x$ is a root”.
  6. Change $x$ to $x + \Delta x$.
  7. If $x \le x_b$ proceed Step 5.
  8. Stop.

challenges

refs