Skip to content
๐Ÿงญ Parametric vs Argument View in Linear Systems

๐Ÿงญ Parametric vs Argument View in Linear Systems

๐ŸŽฏ Goal

Understand how the same solution can be written in two different styles:

  • Row form: each variable is written separately.
  • Vector form: the whole solution is written as a single vector made from parts.

๐Ÿงฎ Example

Given:

$$ x = -4t - 3s \\ y = t \\ z = s $$

๐Ÿงพ Row Form โ€” View by Parameter

Each variable is written on its own line:

  • $x = -4t - 3s$
  • $y = t$
  • $z = s$

๐Ÿ” This shows how each variable depends on $t$ and $s$.


๐Ÿ“ฆ Vector Form โ€” View by Argument

$$ \begin{bmatrix} x \ y \ z \end{bmatrix} = t \begin{bmatrix} -4 \ 1 \ 0 \end{bmatrix}

  • s \begin{bmatrix} -3 \ 0 \ 1 \end{bmatrix} $$

๐Ÿ” This shows how the whole solution is built by combining two fixed vectors using $t$ and $s$.


๐Ÿง  Summary

StyleWhat it shows
Row formEach variable depends on parameters
Vector formWhole solution built from fixed pieces

๐Ÿช„ Analogy

  • Row form: Like writing a recipe for each ingredient.
  • Vector form: Like mixing two colors to get a final shade.
Last updated on