From a318eebd24cbfbdc1bc334de71bb0a142bee168d Mon Sep 17 00:00:00 2001 From: Leng <30428021+blleng@users.noreply.github.com> Date: Sun, 26 May 2024 23:05:56 +0800 Subject: [PATCH] [PUBLISHER] Merge #105 * PUSH NOTE : iteration-and-chaos.md * PUSH NOTE : writings.md * PUSH NOTE : flashes.md --- content/wiki/iteration-and-chaos.md | 34 +++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 content/wiki/iteration-and-chaos.md diff --git a/content/wiki/iteration-and-chaos.md b/content/wiki/iteration-and-chaos.md new file mode 100644 index 0000000..8429cb7 --- /dev/null +++ b/content/wiki/iteration-and-chaos.md @@ -0,0 +1,34 @@ +--- +title: Iteration and chaos +description: A brief introduction to iteration and chaos +date: 2024-05-26T14:18 +update: 2024-05-26T23:04 +tags: + - wiki/mathematics + - wiki/complex-system + - wiki/computational-physics +id: wiki20240526141811 +dg-publish: true +maturity: sapling +--- +# Iterative methods for computing physical quantities + +If a physical quantity is involved in the expression of itself : +$$ +f(x)=x \tag{1-1} +$$ +Iterative methods are usually employed for solving it. + +## Direct iterative method + +Let $f(x_n)=x_{n+1}$,compute from a preset $x_0$ until $x_n=x_{n+1}$. + +Considering the limited iterative steps in real world, a strict equation is hard to get. Usually, a convergence factor $\epsilon$ is used for qualification: + +$$ +\bigg | \frac{x_{n+1}-x_n}{x_n} \bigg | \leq \epsilon +$$ +## Newton iterative method + +to be continued... +# Chaos and fractal