Dashboard

Featured nodes

Roots

  • Public root

Templates

  • Test template
  • iCorps template
  • Guanyu's Latex template
  • Ivar's latex template
  • Family Tree template
  • Latex template
  • Router template

Trees

  • Public trees

Orphans

  • Browse orphan nodes
Related nodes

Parents1

  • Matrix equations

Siblings5
  • Sort by title
  • Sort by date

  • Definition of matrix equation
  • Example of solving a 3-by-3 matrix equation
  • Example of solving a 3-by-3 homogeneous matrix equation
  • A matrix equation is equivalent to a linear system
  • The matrix equation Ax=b has a solution if and only if b is a linear combination of the columns of A.
Knowenβ
  • Help
    • Welcome to Knowen!
    • Edit test node (no login required)
    • Create new test node (no login required)
  • Not logged in
    • Sign in
    • Sign up

History & Comments

Back

Fill content

Description:Added 3x3 homogeneous matrix equation example
# Example of solving a 3-by-3 homogeneous matrix equation

Put content here## Example: Solving a 3-by-3 Homogeneous Matrix Equation
⏎
Solve `Ax = 0` where:
```
A = [ 1  2  3]
    [ 2  5  3]
    [ 1  0  8]
```
⏎
**Step 1:** Form the augmented matrix `[A | 0]`
```
[ 1  2  3 | 0]
[ 2  5  3 | 0]
[ 1  0  8 | 0]
```
⏎
**Step 2:** R₂ → R₂ - 2R₁, R₃ → R₃ - R₁
```
[ 1  2  3 | 0]
[ 0  1 -3 | 0]
[ 0 -2  5 | 0]
```
⏎
**Step 3:** R₃ → R₃ + 2R₂
```
[ 1  2  3 | 0]
[ 0  1 -3 | 0]
[ 0  0 -1 | 0]
```
⏎
**Step 4:** R₃ → -R₃
```
[ 1  2  3 | 0]
[ 0  1 -3 | 0]
[ 0  0  1 | 0]
```
⏎
**Step 5:** Back-substitute:
- z = 0
- y - 3(0) = 0, so y = 0
- x + 2(0) + 3(0) = 0, so x = 0
⏎
**Solution:** x = [0, 0, 0]ᵀ (the trivial solution)
⏎
The homogeneous system has only the trivial solution because A has 3 pivots (full rank). If A had fewer pivots, free variables would yield nontrivial solutions.

# Parents

* Matrix equations
Sign in to add a new comment

Contact us or leave feedback

© KTree Inc. 2026