Express a Vector as a Linear Combination of Other Vectors (2024)


Problem 115

Express the vector $\mathbf{b}=\begin{bmatrix}
2 \\
13 \\
6
\end{bmatrix}$ as a linear combination of the vectors
\[\mathbf{v}_1=\begin{bmatrix}
1 \\
5 \\
-1
\end{bmatrix},
\mathbf{v}_2=
\begin{bmatrix}
1 \\
2 \\
1
\end{bmatrix},
\mathbf{v}_3=
\begin{bmatrix}
1 \\
4 \\
3
\end{bmatrix}.\]


(The Ohio State University, Linear Algebra Exam)


Express a Vector as a Linear Combination of Other Vectors (1)Add to solve later

Sponsored Links


Solution.

We need to find numbers $x_1, x_2, x_3$ satisfying
\[x_1 \mathbf{v}_1+ x_2\mathbf{v}_2+x_3\mathbf{v}_3=\mathbf{b}.\]

This vector equation is equivalent to the following matrix equation.
\[[\mathbf{v}_1 \mathbf{v}_2 \mathbf{v}_3]\mathbf{x}=\mathbf{b}\]or more explicitly we can write it as
\[\begin{bmatrix}
1 & 1 & 1 \\
5 &2 &4 \\
-1 & 1 & 3
\end{bmatrix}
\begin{bmatrix}
x_1 \\
x_2 \\
x_3
\end{bmatrix}=
\begin{bmatrix}
2 \\
13 \\
6
\end{bmatrix}.\]

Thus the problem is to find the solution of this matrix equation.
Let us consider the augmented matrix for this system to apply Gauss-Jordan elimination.

The augmented matrix is
\[ \left[\begin{array}{rrr|r}
1 & 1 & 1 & 2 \\
5 &2 & 4 & 13 \\
-1 & 1 & 3 & 6
\end{array} \right].\] We apply elementary row operations and obtain a matrix in reduced row echelon form as follows.
\begin{align*}
\left[\begin{array}{rrr|r}
1 & 1 & 1 & 2 \\
5 &2 & 4 & 13 \\
-1 & 1 & 3 & 6
\end{array} \right] \xrightarrow[R_3+R_1]{R_2-5R_1}
\left[\begin{array}{rrr|r}
1 & 1 & 1 & 2 \\
0 &-3 & -1 & 3 \\
0 & 2 & 4 & 8
\end{array} \right]\\[6pt] \xrightarrow[-R_2]{\frac{1}{2}R_3}
\left[\begin{array}{rrr|r}
1 & 1 & 1 & 2 \\
0 &3 & 1 & -3 \\
0 & 1 & 2 & 4
\end{array} \right] \xrightarrow{R_2 \leftrightarrow R_3}
\left[\begin{array}{rrr|r}
1 & 1 & 1 & 2 \\
0 & 1 & 2 & 4 \\
0 &3 & 1 & -3
\end{array} \right]\\[6pt] \xrightarrow[R_3-3R_2]{R_1-R_2}
\left[\begin{array}{rrr|r}
1 & 0 & -1 & -2 \\
0 & 1 & 2 & 4 \\
0 &0 & -5 & -15
\end{array} \right] \xrightarrow{\frac{-1}{5}R_3}
\left[\begin{array}{rrr|r}
1 & 0 & -1 & -2 \\
0 & 1 & 2 & 4 \\
0 &0 & 1 & 3
\end{array} \right]\\[6pt] \xrightarrow[R_2-2R_3]{R_1+R_3}
\left[\begin{array}{rrr|r}
1 & 0 & 0 & 1 \\
0 & 1 & 0 & -2 \\
0 &0 & 1 & 3
\end{array} \right].
\end{align*}

Therefore the solution for the system is
\[x_1=1, x_2=-2, \text{ and } x_3=3\]and we obtain the linear combination
\[\mathbf{b}=\mathbf{v}_1-2\mathbf{v}_2+3\mathbf{v}_3.\]

The Ohio State University Linear Algebra Exam Problems and Solutions

Check out more problems from the Ohio State University Linear Algebra Exams ↴
The Ohio State University Linear Algebra.


Express a Vector as a Linear Combination of Other Vectors (3)Add to solve later

Sponsored Links

More from my site

  • Express a Vector as a Linear Combination of Given Three Vectors Let\[\mathbf{v}_1=\begin{bmatrix} 1 \\ 5 \\ -1 \end{bmatrix}, \mathbf{v}_2=\begin{bmatrix} 1 \\ 4 \\ 3 \end{bmatrix}, \mathbf{v}_3=\begin{bmatrix} 1 \\ 2 \\ 1 \end{bmatrix}, \mathbf{b}=\begin{bmatrix} 2 \\ 13 \\ 6 […]
  • Possibilities For the Number of Solutions for a Linear System Determine whether the following systems of equations (or matrix equations) described below has no solution, one unique solution or infinitely many solutions and justify your answer.(a) \[\left\{\begin{array}{c}ax+by=c \\dx+ey=f,\end{array}\right.\]where $a,b,c, d$ […]
  • A Matrix Representation of a Linear Transformation and Related Subspaces Let $T:\R^4 \to \R^3$ be a linear transformation defined by\[ T\left (\, \begin{bmatrix}x_1 \\x_2 \\x_3 \\x_4 \end{bmatrix} \,\right) = \begin{bmatrix}x_1+2x_2+3x_3-x_4 \\3x_1+5x_2+8x_3-2x_4 \\x_1+x_2+2x_3 \end{bmatrix}.\](a) Find a matrix $A$ such that […]
  • Given All Eigenvalues and Eigenspaces, Compute a Matrix Product Let $C$ be a $4 \times 4$ matrix with all eigenvalues $\lambda=2, -1$ and eigensapces\[E_2=\Span\left \{\quad \begin{bmatrix} 1 \\ 1 \\ 1 \\ 1 \end{bmatrix} \quad\right \} \text{ and } E_{-1}=\Span\left \{ \quad\begin{bmatrix} 1 \\ 2 \\ 1 \\ 1 […]
  • Solving a System of Linear Equations Using Gaussian Elimination Solve the following system of linear equations using Gaussian elimination.\begin{align*}x+2y+3z &=4 \\5x+6y+7z &=8\\9x+10y+11z &=12\end{align*}Elementary row operationsThe three elementary row operations on a matrix are defined as […]
  • Solving a System of Linear Equations By Using an Inverse Matrix Consider the system of linear equations\begin{align*}x_1&= 2, \\-2x_1 + x_2 &= 3, \\5x_1-4x_2 +x_3 &= 2\end{align*}(a) Find the coefficient matrix and its inverse matrix.(b) Using the inverse matrix, solve the system of linear equations.(The Ohio […]
  • Give a Formula for a Linear Transformation if the Values on Basis Vectors are Known Let $T: \R^2 \to \R^2$ be a linear transformation.Let\[\mathbf{u}=\begin{bmatrix} 1 \\ 2 \end{bmatrix}, \mathbf{v}=\begin{bmatrix} 3 \\ 5 \end{bmatrix}\]be 2-dimensional vectors.Suppose that\begin{align*}T(\mathbf{u})&=T\left( \begin{bmatrix} 1 \\ […]
  • Find the Inverse Matrix of a $3\times 3$ Matrix if Exists Find the inverse matrix of\[A=\begin{bmatrix} 1 & 1 & 2 \\ 0 &0 &1 \\ 1 & 0 & 1\end{bmatrix}\]if it exists. If you think there is no inverse matrix of $A$, then give a reason.(The Ohio State University, Linear Algebra Midterm Exam […]
Express a Vector as a Linear Combination of Other Vectors (2024)
Top Articles
Latest Posts
Article information

Author: Virgilio Hermann JD

Last Updated:

Views: 5387

Rating: 4 / 5 (41 voted)

Reviews: 80% of readers found this page helpful

Author information

Name: Virgilio Hermann JD

Birthday: 1997-12-21

Address: 6946 Schoen Cove, Sipesshire, MO 55944

Phone: +3763365785260

Job: Accounting Engineer

Hobby: Web surfing, Rafting, Dowsing, Stand-up comedy, Ghost hunting, Swimming, Amateur radio

Introduction: My name is Virgilio Hermann JD, I am a fine, gifted, beautiful, encouraging, kind, talented, zealous person who loves writing and wants to share my knowledge and understanding with you.