Energie: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Keine Bearbeitungszusammenfassung |
Keine Bearbeitungszusammenfassung |
||
Zeile 1: | Zeile 1: | ||
<math>E^2=m^2 c^4 + \underline{p}^2 c^2</math> | <math>E^2=m^2 c^4 + \underline{p}^2 c^2</math> | ||
[[Taylor-Entwicklung]] für kleine Geschwindigkeiten: | [[Taylor-Entwicklung]] für kleine Geschwindigkeiten: | ||
< | <source> | ||
$Assumptions = c > 0 && Subscript[m, 0] >= 0 && p >= 0 && v >= 0; | $Assumptions = c > 0 && Subscript[m, 0] >= 0 && p >= 0 && v >= 0; | ||
\[CapitalEpsilon] := | \[CapitalEpsilon] := | ||
Series[Sqrt[Subscript[m, 0]^2*c^4 + p^2*c^2], {p, 0, 5}] // | Series[Sqrt[Subscript[m, 0]^2*c^4 + p^2*c^2], {p, 0, 5}] // | ||
Simplify; | Simplify; | ||
Print["E" == \[CapitalEpsilon]]</ | Print["E" == \[CapitalEpsilon]]</source> | ||
<math>E=c^2 m_0+\frac{p^2}{2 m_0}-\frac{p^4}{8 \left(c^2 m_0^3\right)}+O\left(p^6\right)</math> | <math>E=c^2 m_0+\frac{p^2}{2 m_0}-\frac{p^4}{8 \left(c^2 m_0^3\right)}+O\left(p^6\right)</math> |
Version vom 11. Juli 2009, 19:39 Uhr
Taylor-Entwicklung für kleine Geschwindigkeiten:
$Assumptions = c > 0 && Subscript[m, 0] >= 0 && p >= 0 && v >= 0;
\[CapitalEpsilon] :=
Series[Sqrt[Subscript[m, 0]^2*c^4 + p^2*c^2], {p, 0, 5}] //
Simplify;
Print["E" == \[CapitalEpsilon]]