blob: bdca83764eaadcb2c6015f0ab7dae0b6e71a2dd9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
---
title: Beweis des Satzes des Pythagoras
slug: Web/MathML/Examples/MathML_Pythagorean_Theorem
tags:
- Anfänger
- Beispiel
- MathML
translation_of: Web/MathML/Examples/MathML_Pythagorean_Theorem
original_slug: Web/MathML/Beispiele/MathML_Satz_des_Pythagoras
---
<p>Wir erbringen einen Beweis für den Satz des Pythagoras für rechtwinklige Dreiecke: <math> <mrow> <msup><mi> a </mi><mn>2</mn></msup> <mo> + </mo> <msup><mi> b </mi><mn>2</mn></msup> <mo> = </mo> <msup><mi> c </mi><mn>2</mn></msup> </mrow> </math></p>
<p>Ohne Angabe des <code>display</code>-Attributes wird die Gleichung <code>inline</code>, also im laufenden Text dargestellt. Die Einrückungen dienen der Übersichtlichkeit. Über die von HTML bekannten Regeln gibt es hier keine Besonderheiten.</p>
<pre class="brush: html"><math>
<mrow>
<msup><mi> a </mi><mn>2</mn></msup>
<mo> + </mo>
<msup><mi> b </mi><mn>2</mn></msup>
<mo> = </mo>
<msup><mi> c </mi><mn>2</mn></msup>
</mrow>
</math>
</pre>
<p>Wir zeigen dass das große Quadrat flächengleich dem inneren Quadrat (Kantenlänge: Hypothenuse) plus die Flächen der vier kleinen Dreiecke: <math style="display: block;"> <mtable columnalign="right center left"> <mtr> <mtd> <msup> <mrow> <mo> ( </mo> <mi> a </mi> <mo> + </mo> <mi> b </mi> <mo> ) </mo> </mrow> <mn> 2 </mn> </msup> </mtd> <mtd> <mo> = </mo> </mtd> <mtd> <msup><mi> c </mi><mn>2</mn></msup> <mo> + </mo> <mn> 4 </mn> <mo> ⋅ </mo> <mo>(</mo> <mfrac> <mn> 1 </mn> <mn> 2 </mn> </mfrac> <mi> a </mi><mi> b </mi> <mo>)</mo> </mtd> </mtr> <mtr> <mtd> <msup><mi> a </mi><mn>2</mn></msup> <mo> + </mo> <mn> 2 </mn><mi> a </mi><mi> b </mi> <mo> + </mo> <msup><mi> b </mi><mn>2</mn></msup> </mtd> <mtd> <mo> = </mo> </mtd> <mtd> <msup><mi> c </mi><mn>2</mn></msup> <mo> + </mo> <mn> 2 </mn><mi> a </mi><mi> b </mi> </mtd> </mtr> <mtr> <mtd> <msup><mi> a </mi><mn>2</mn></msup> <mo> + </mo> <msup><mi> b </mi><mn>2</mn></msup> </mtd> <mtd> <mo> = </mo> </mtd> <mtd> <msup><mi> c </mi><mn>2</mn></msup> </mtd> </mtr> </mtable> </math></p>
<p>Die Lösung der Gleichung wird im Fluss der Seite als Block dargestellt und <code>mtable</code> mit passender Ausrichtung der Spalten sorgt dafür, dass die Gleichungen sauber untereinander gesetzt werden.</p>
<pre class="brush: html"><math style="display: block;">
<mtable columnalign="right center left">
<mtr>
<mtd>
<msup>
<mrow> <mo> ( </mo> <mi> a </mi> <mo> + </mo> <mi> b </mi> <mo> ) </mo> </mrow> <mn> 2 </mn>
</msup>
</mtd>
<mtd>
<mo> = </mo>
</mtd>
<mtd>
<msup> <mi> c </mi> <mn> 2 </mn> </msup>
<mo> + </mo>
<mn> 4 </mn>
<mo> ⋅ </mo>
<mo> ( </mo> <mfrac> <mn> 1 </mn> <mn> 2 </mn> </mfrac> <mi> a </mi> <mi> b </mi> <mo> ) </mo>
</mtd>
</mtr>
<mtr>
<mtd>
<msup> <mi> a </mi> <mn> 2 </mn> </msup>
<mo> + </mo>
<mn> 2 </mn>
<mi> a </mi>
<mi> b </mi>
<mo> + </mo>
<msup> <mi> b </mi> <mn> 2 </mn> </msup>
</mtd>
<mtd>
<mo> = </mo>
</mtd>
<mtd>
<msup> <mi> c </mi> <mn> 2 </mn> </msup>
<mo> + </mo>
<mn> 2 </mn>
<mi> a </mi>
<mi> b </mi>
</mtd>
</mtr>
<mtr>
<mtd>
<msup> <mi> a </mi> <mn> 2 </mn> </msup>
<mo> + </mo>
<msup> <mi> b </mi> <mn> 2 </mn> </msup>
</mtd>
<mtd>
<mo> = </mo>
</mtd>
<mtd>
<msup> <mi> c </mi> <mn> 2 </mn> </msup>
</mtd>
</mtr>
</mtable>
</math></pre>
<p>Siehe <a href="https://de.wikipedia.org/wiki/Satz_des_Pythagoras#Beweise">https://de.wikipedia.org/wiki/Satz_des_Pythagoras#Beweise</a></p>
|