Calculus, symbolic computation, differential equations, and function analysis. Fully powered by nerdamer CAS.
Ableitung(x^3 + 2x^2 - x) → 3x² + 4x - 1 Ableitung(sin(x)) → cos(x) Ableitung(x^5, 3) → 60x² (3rd derivative)
Partialableitung(x^2 * y + y^3, x) → 2xy Partialableitung(x^2 * y + y^3, y) → x² + 3y²
Integral(x^2) → x³/3 Integral(sin(x)) → -cos(x) Integral(x^2, 0, 3) → 9 Integral(e^x, 0, 1) → e - 1 ≈ 1.7183
IntegralZwischen(x^2, x, 0, 1) → 1/6
Grenzwert(sin(x)/x, x, 0) → 1 Grenzwert((1 + 1/n)^n, n, ∞) → e Grenzwert((x^2-1)/(x-1), x, 1) → 2
TaylorPolynom(e^x, 0, 4) → 1 + x + x²/2 + x³/6 + x⁴/24 TaylorPolynom(sin(x), 0, 5) → x - x³/6 + x⁵/120
Löse(x^2 - 5x + 6 = 0) → {2, 3} Löse(x^2 + 1 = 0) → {i, -i} (complex) Löse({x+y=3, x-y=1}, {x,y}) → {x=2, y=1}
LöseNumerisch(cos(x) - x, 1) → 0.7391 (Dottie number)
Nullstelle(x^2 - 4) → {-2, 2} Nullstelle(sin(x), 3, 4) → 3.14159
Extremwert(x^3 - 3x, -3, 3) → {(-1, 2), (1, -2)}
Wendepunkt(x^3 - 3x) → (0, 0)
Flächeninhalt(sin(x), 0, 2π) → 4
RiemannSumme(x^2, 0, 1, 100, "mid") → ≈ 0.3333
Bogenlänge(sqrt(1-x^2), -1, 1) → π (semicircle)