Skip to content
๐Ÿงฎ Parameterisation

๐Ÿงฎ Parameterisation

When solving systems of equations, we often encounter dependent relationships between variables. One variable may be expressed in terms of another, which we call a free variable.


๐Ÿ” Direct Relationship

Suppose we solve a system and get:

$$ x = 2y + 3 $$

Here, $y$ is the free variable. To evaluate the solution:

  • โœ… Assign a value to $y$
  • โœ… Compute $x$ using the expression

This works, but itโ€™s not ideal for generalisation.


๐ŸŽฏ Argumentโ€“Parameter Clarity

To make the argumentโ€“parameter relationship explicit, we introduce a new variable (say $a$ or $t$) as the parameter:

$$ \begin{align} x &= 2a + 3 \\ y &= a \end{align} $$

Now it’s clear:

  • $a$ is the argument we plug in
  • $x$, $y$ are computed from $a$

This is called the parametric form.

Which expresses the solution set as a function of one or more free parameters.

Itโ€™s ideal for generalisation, manipulation, and geometric interpretation.

๐Ÿง  Why Use Parametric Form?

Linear algebra emphasizes general solutions over specific ones. Parametric form helps:

  • ๐Ÿ” Clarify dependencies
  • ๐Ÿ”„ Plug in arbitrary values
  • ๐Ÿงฉ Represent infinite solution sets
  • ๐Ÿ“ Interpret geometrically (lines, planes, etc.)

โœ… Best Practice

Always convert solution sets into parametric form when:

  • You have free variables
  • You want to describe the entire solution space
  • Youโ€™re preparing for geometric or algebraic manipulation
Last updated on