Jetzt setzen wir alles zusammen. Eine Kurvendiskussion ist ein festes Rezept: Punkt für Punkt sammelst du die Eigenschaften einer Funktion, bis du ihren Graphen ohne Wertetabelle skizzieren kannst.
Definitionsbereich — wo ist f f f überhaupt definiert? (Nenner ≠ 0 \neq 0 = 0 , Wurzel ≥ 0 \ge 0 ≥ 0 .)
Symmetrie — nur gerade Potenzen ⇒ \Rightarrow ⇒ achsensymmetrisch; nur ungerade ⇒ \Rightarrow ⇒ punktsymmetrisch zum Ursprung.
Nullstellen — f ( x ) = 0 f(x) = 0 f ( x ) = 0 lösen.
Pole & Asymptoten — Verhalten an Definitionslücken und für x → ± ∞ x \to \pm\infty x → ± ∞ .
Extrema — f ′ ( x ) = 0 f'(x) = 0 f ′ ( x ) = 0 , Art über f ′ ′ f'' f ′′ .
Wendepunkte — f ′ ′ ( x ) = 0 f''(x) = 0 f ′′ ( x ) = 0 mit Vorzeichenwechsel.
Skizze — alle Punkte eintragen, verbinden.
f ( x ) = x 4 − 4 x 2 f(x) = x^4 - 4x^2 f ( x ) = x 4 − 4 x 2
Definitionsbereich: ganz R \mathbb{R} R (Polynom).
Symmetrie: nur gerade Potenzen ⇒ \Rightarrow ⇒ achsensymmetrisch zur y y y -Achse.
Nullstellen: x 2 ( x 2 − 4 ) = 0 ⇒ x = 0 x^2(x^2 - 4) = 0 \Rightarrow x = 0 x 2 ( x 2 − 4 ) = 0 ⇒ x = 0 (doppelt) und x = ± 2 x = \pm 2 x = ± 2 .
Fernverhalten: höchster Term x 4 ⇒ f → + ∞ x^4 \Rightarrow f \to +\infty x 4 ⇒ f → + ∞ für x → ± ∞ x \to \pm\infty x → ± ∞ .
Extrema: f ′ ( x ) = 4 x 3 − 8 x = 4 x ( x 2 − 2 ) = 0 ⇒ x = 0 , ± 2 f'(x) = 4x^3 - 8x = 4x(x^2 - 2) = 0 \Rightarrow x = 0,\ \pm\sqrt{2} f ′ ( x ) = 4 x 3 − 8 x = 4 x ( x 2 − 2 ) = 0 ⇒ x = 0 , ± 2 . Mit f ′ ′ ( x ) = 12 x 2 − 8 f''(x) = 12x^2 - 8 f ′′ ( x ) = 12 x 2 − 8 :
f ′ ′ ( 0 ) = − 8 < 0 ⇒ f''(0) = -8 < 0 \Rightarrow f ′′ ( 0 ) = − 8 < 0 ⇒ Maximum ( 0 ∣ 0 ) (0 \mid 0) ( 0 ∣ 0 ) .
f ′ ′ ( ± 2 ) = 16 > 0 ⇒ f''(\pm\sqrt2) = 16 > 0 \Rightarrow f ′′ ( ± 2 ) = 16 > 0 ⇒ Minima ( ± 2 ∣ − 4 ) (\pm\sqrt2 \mid -4) ( ± 2 ∣ − 4 ) .
Wendepunkte: f ′ ′ ( x ) = 12 x 2 − 8 = 0 ⇒ x = ± 2 3 ≈ ± 0.82 f''(x) = 12x^2 - 8 = 0 \Rightarrow x = \pm\sqrt{\tfrac23} \approx \pm 0.82 f ′′ ( x ) = 12 x 2 − 8 = 0 ⇒ x = ± 3 2 ≈ ± 0.82 , dort f ≈ − 2.2 f \approx -2.2 f ≈ − 2.2 .
Python Loading editor…
import numpy as np
import matplotlib.pyplot as plt
x = np.linspace(-2.4, 2.4, 500)
plt.plot(x, x**4 - 4*x**2)
plt.axhline(0, color='gray', lw=0.6)
plt.plot([0], [0], 'o', color='C3', label='Max (0 | 0)')
plt.plot([np.sqrt(2), -np.sqrt(2)], [-4, -4], 'o', color='C2', label='Min (±√2 | -4)')
w = np.sqrt(2/3)
plt.plot([w, -w], [w**4 - 4*w**2]*2, 's', color='C1', ms=5, label='Wendepunkte')
plt.legend(fontsize=8); plt.grid(True, alpha=0.3)
plt.title(r'$f(x) = x^4 - 4x^2$')
plt.show()
Alles passt zusammen: symmetrisch zur y y y -Achse, ein «W» mit Maximum im Ursprung und zwei Minima — genau wie die gesammelten Punkte es vorhersagen.
Führe eine vollständige Kurvendiskussion durch (Definitionsbereich, Symmetrie, Nullstellen, Extrema, Wendepunkt, Fernverhalten, Skizze):
f ( x ) = x 3 − 3 x 2 f(x) = x^3 - 3x^2 f ( x ) = x 3 − 3 x 2