๐งฎ 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.
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