This commit is contained in:
git-sandro 2026-01-24 13:48:10 +01:00
parent ddb427c3a0
commit 7835a40b94

View File

@ -76,6 +76,8 @@ x = [1, 2, 3, 4, 5], y = [2, 3, 5, 4, 6] \\
y = mx+c
$$
1. x, y Tabelle erstellen
<div align="center">
||x|y|x*y|x<sup>2<sup>|
|---|---|---|---|---|
||1|2|2|1|
@ -85,6 +87,8 @@ $$
||5|6|30|25|
|$$\sum$$|**15**|**20**|**69**|**55**|
</div>
2. *c* Wert berechnen
$$
c = \frac{\sum_y * \sum_x - \sum_x * \sum_{xy}}{n(\sum_{x^2}) - (\sum_x)^2} \\[1em]