This commit is contained in:
Miloslav Ciz 2024-03-15 22:32:12 +01:00
parent a8a438148b
commit 772bda5ba7
11 changed files with 1751 additions and 1719 deletions

19
sqrt.md
View file

@ -7,6 +7,25 @@ Square root (sometimes shortened to *sqrt*) of [number](number.md) *a* is such a
\/x = x
```
Here is the graph of square root [function](function.md) (notice it's a [parabola](parabola.md) flipped by the diagonal axis, for square root is an inverse function to the function *x^2*):
```
^ sqrt(x)
| : : : : :
3 + ~ ~ ~ + ~ ~ ~ + ~ ~ ~ + ~ ~ ~ + ~ ~ ~ + ~
| : : : : :
| : : : : ___....--
2 + ~ ~ ~ + ~ ~ ~ + ~ ~ ~ + ~ __..---'"""": ~
| : : __..--"""" : :
| : __.--'" : : :
1 + ~ ~ _--'" ~ ~ + ~ ~ ~ + ~ ~ ~ + ~ ~ ~ + ~
| _-" : : : : :
| / : : : : :
----+"------|-------|-------|-------|-------|----> x
|0 1 2 3 4 5
|
```
TODO
## Programming