-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* PUSH NOTE : iteration-and-chaos.md * PUSH NOTE : writings.md * PUSH NOTE : flashes.md
- Loading branch information
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |