Challenge: System of Linear Equations

Solve this challenge on the system of linear equations in R.

We'll cover the following

Exercise

Use the code editor below to write the R code required to solve the following system of linear equations:

0x1 + 2x2 + 3x3=05x1 + 0x2 + 1x3=11x1 + 4x2  2x3=3\begin{alignat}{2} 0 * x_1 \space + \space 2 * x_2 \space + \space 3 * x_3 = 0 \\ 5 * x_1 \space + \space 0 * x_2 \space + \space 1 * x_3 = 1 \\ 1 * x_1 \space + \space 4 * x_2 \space - \space 2 * x_3 = 3 \\ \end{alignat}

Get hands-on with 1200+ tech skills courses.