Seit 2010 · Über 2 Mio. Tool-Aufrufe pro Monat
Seit 2010
Zu Chrome hinzufügen

Mein Werkzeugkasten

Automatischer Modus

Noch keine Werkzeuge gespeichert.

Auf Premium-Version upgraden
Ähnliche Tools
Matrixpotenz-RechnerMatrixexponential-RechnermatrixrechnerJacobi-Matrix-RechnerDeterminantenrechnerLineares Gleichungssystem LöserChemische Gleichung Ausgleicher
Startseite > Mathematik > Lineare Algebra
 

Cramersche Regel Rechner

Lösen Sie Systeme aus 2 oder 3 linearen Gleichungen mit der Cramerschen Regel. Geben Sie Koeffizienten ein und erhalten Sie schrittweise Determinantenberechnungen mit animierter Matrix-Visualisierung und geometrischer Interpretation.

Kostenlos nutzbarOhne RegistrierungSofortige Ergebnisse
Cramersche Regel RechnerJetzt testen — gratis ▼
Examples:
xy
[
a₁₁
a₁₂
a₂₁
a₂₂
] = [
b₁
b₂
]

Embed Cramersche Regel Rechner Widget

Cramersche Regel Rechner

Der Cramersche-Regel-Rechner löst Systeme aus 2 oder 3 linearen Gleichungen mithilfe von Determinanten. Gib die Koeffizientenmatrix und den Konstantenvektor ein und erhalte die vollständige Lösung mit schrittweisen Determinantenberechnungen, einer animierten Matrixvisualisierung, die den Spaltenaustausch zeigt, sowie einem geometrischen Interpretationsgraphen für 2×2-Systeme. Die Cramersche Regel ist eine grundlegende Technik der linearen Algebra, die jede Variable als Verhältnis zweier Determinanten ausdrückt.

What Is Cramer's Rule?

Die Cramersche Regel ist ein Theorem der linearen Algebra, das eine explizite Formel zur Lösung eines linearen Gleichungssystems mit ebenso vielen Gleichungen wie Unbekannten liefert, sofern das System eine eindeutige Lösung besitzt. Benannt nach dem Schweizer Mathematiker Gabriel Cramer (1704–1752), verwendet die Regel Determinanten, um jede Variable als Verhältnis auszudrücken:

$$x_i = \frac{D_i}{D}$$

where \(D\) is the determinant of the coefficient matrix and \(D_i\) is the determinant formed by replacing the \(i\)-th column of the coefficient matrix with the constants vector.

Key Concepts

📐
Determinant
A scalar value computed from a square matrix that indicates whether the system has a unique solution.
🔄
Column Replacement
Replace one column of the coefficient matrix with the constants vector to form each D_i.
📊
Unique Solution
Exists when D ≠ 0. Each variable equals D_i / D.
Singular Case
When D = 0, the system has either no solution or infinitely many.

Cramer's Rule Formulas

For a 2×2 System

Given the system:

$$a_1x + b_1y = c_1$$ $$a_2x + b_2y = c_2$$

DeterminantFormulaDescription
\(D\)\(\begin{vmatrix} a_1 & b_1 \\ a_2 & b_2 \end{vmatrix} = a_1 b_2 - b_1 a_2\)Coefficient matrix determinant
\(D_x\)\(\begin{vmatrix} c_1 & b_1 \\ c_2 & b_2 \end{vmatrix} = c_1 b_2 - b_1 c_2\)Replace x-column with constants
\(D_y\)\(\begin{vmatrix} a_1 & c_1 \\ a_2 & c_2 \end{vmatrix} = a_1 c_2 - c_1 a_2\)Replace y-column with constants

Solution: \(x = D_x / D\), \(y = D_y / D\)

For a 3×3 System

The determinant of a 3×3 matrix is computed using cofactor expansion along the first row. Each \(D_i\) is formed by replacing the corresponding column with the constants vector, and the solution is \(x_i = D_i / D\).

When Does Cramer's Rule Work?

ConditionD ValueResult
Unique solutionD ≠ 0Each variable = D_i / D
No solution (inconsistent)D = 0, some D_i ≠ 0Lines/planes are parallel
Infinitely many solutionsD = 0, all D_i = 0Equations are dependent

Cramer's Rule vs. Other Methods

MethodBest ForLimitation
Cramer's RuleSmall systems (2×2, 3×3), exact symbolic solutionsSlow for large systems (n! complexity)
Gaussian EliminationGeneral systems, large matricesNo closed-form formula
Matrix InverseMultiple right-hand sidesRequires D ≠ 0, expensive to compute
LU DecompositionRepeated solving, numerical stabilityMore complex to implement

How to Use the Cramer's Rule Calculator

  1. Systemgröße wählen: Wähle 2×2 oder 3×3, je nachdem, wie viele Gleichungen und Unbekannte du hast.
  2. Koeffizienten eingeben: Fülle die Koeffizientenmatrix links aus. Jede Zeile entspricht einer Gleichung, jede Spalte einer Variablen (x, y, z).
  3. Konstanten eingeben: Fülle den Konstantenvektor rechts aus (die rechte Seite jeder Gleichung).
  4. Auf Lösen klicken: Der Rechner berechnet alle Determinanten (D, D_x, D_y und optional D_z), bestimmt den Lösungstyp und zeigt den schrittweisen Prozess mit animierter Matrixvisualisierung.

Real-World Applications

FieldApplicationExample
EngineeringCircuit analysis (Kirchhoff's laws)Finding currents in a resistor network
EconomicsMarket equilibriumSupply and demand intersection
PhysicsForce balanceFinding reaction forces in statics
ChemistryBalancing equationsStoichiometric coefficients
Computer GraphicsCoordinate transformationsLine/plane intersection points

FAQ

What is Cramer's rule?
Cramer's rule is a method for solving a system of linear equations using determinants. For each variable, you replace its column in the coefficient matrix with the constants vector and divide the resulting determinant by the main determinant. It works when the coefficient matrix has a nonzero determinant.
When does Cramer's rule fail?
Cramer's rule fails when the determinant of the coefficient matrix is zero. This means the system either has no solution (inconsistent — the equations describe parallel lines or planes) or infinitely many solutions (dependent — the equations are redundant). In such cases, other methods like Gaussian elimination are needed.
What is the formula for Cramer's rule in a 2×2 system?
For the system a1*x + b1*y = c1, a2*x + b2*y = c2: x = Dx/D and y = Dy/D, where D = a1*b2 - b1*a2 is the determinant of the coefficient matrix, Dx replaces the x-column with the constants, and Dy replaces the y-column with the constants.
Can Cramer's rule solve systems larger than 3×3?
Cramer's rule can theoretically solve any n×n system, but it becomes computationally expensive for large systems because it requires computing n+1 determinants, each of size n×n. For systems larger than 3×3, methods like Gaussian elimination or LU decomposition are far more efficient in practice.
What does a zero determinant mean geometrically?
For a 2×2 system, a zero determinant means the two lines are parallel (no solution) or coincident (infinitely many solutions). For a 3×3 system, it means the three planes do not intersect at a single point — they may be parallel, intersect along a line, or all coincide in a plane.

Zitieren Sie diesen Inhalt, diese Seite oder dieses Tool als:

"Cramersche Regel Rechner" unter https://MiniWebtool.com/de/cramersche-regel-rechner/ von MiniWebtool, https://MiniWebtool.com/

by miniwebtool team. Updated: 2026-04-12

Sie können auch unseren KI-Mathematik-Löser GPT ausprobieren, um Ihre mathematischen Probleme durch natürliche Sprachfragen und -antworten zu lösen.

Lineare Algebra:

Beliebte und aktualisierte Tools:

L'Hôpital-Regel-RechnerSimpson-Regel-RechnerWandertempo-Rechner nach NaismithAlle anzeigen →
Startseite > Mathematik > Lineare Algebra > Cramersche Regel Rechner