0% found this document useful (0 votes)
1 views

Lab_09_SystemsOfEquations

Lab 9 requires students to write MATLAB code to solve a specified 5x5 system of equations. The expected solution includes values for variables v, w, x, y, and z. Students must submit their algorithm in PDF or TXT format to the D2L DropBox, with late submissions subject to penalties.

Uploaded by

Gideon Tyree
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
1 views

Lab_09_SystemsOfEquations

Lab 9 requires students to write MATLAB code to solve a specified 5x5 system of equations. The expected solution includes values for variables v, w, x, y, and z. Students must submit their algorithm in PDF or TXT format to the D2L DropBox, with late submissions subject to penalties.

Uploaded by

Gideon Tyree
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

ENGR-1100

Mr. Winfrey

Lab 9 Instructions

This lab is intended to reinforce the ideas presented in our lecture about solving
systems of equations in MATLAB. Write code to solve the following 5x5 system of
equations:

3𝑣 − 𝑤 + 2𝑥 + 𝑦 + 𝑧 = 2
−𝑣 − 𝑤 − 𝑥 + 𝑦 − 𝑧 = 3
−2𝑣 + 4𝑤 − 𝑥 + 2𝑦 + 3𝑧 = −10
𝑣 + 6𝑤 + 𝑥 + 𝑦 − 2𝑧 = 2
3𝑣 − 𝑤 − 𝑥 + 4𝑦 + 2𝑧 = 5

You should find the following solution if you have solved the system correctly:
v = 76/47 w = -30/47 x = -1 y = 35/47 z = -105/47

Turn in a PDF or TXT of your algorithm to the D2L DropBox. Remember that there
is a special folder named “Late Labs” for anyone who misses the deadline but still
wishes to submit their lab. Note that this DropBox also has a date where it will
lock, and any assignments submitted here will be subject to a 30-point penalty.

You might also like