Solution of Linear System Using MATLAB Mathematics Problem (Math Problem Sample)
Implementation of system of equations in matlab
source..American University Of The Middle East
Course Title: Transforming Ideas to Innovation I
Course Code: ENGR131
Instructor: Ardit Lushi
Task: ENGR131_Assessment 4
Student Name:
Student ID:
College:
Major:
Section:
Question One
MATLAB CODE
% Given matrices D = [-5,3;13,-5;-6,81], E = [4,11,-42;40,3,-2], and
% F = [-4,28,4;4,5,-15;26,32,-11]
% Part (a)
clc; clear;
D = [-5,3;13,-5;-6,81];
E = [4,11,-42;40,3,-2];
F = [-4,28,4;4,5,-15;26,32,-11];
% Part (b)
format bank
F_Multiply_inv_F = F\F;
disp(F_Multiply_inv_F)
% Part (c)
D_power_5 = D.^5;
disp(D_power_5)
% Part (d)
F_multiply_8 = 8*F;
disp(F_multiply_8)
% Part (e)
E_multiply_F = E*F;
disp(E_multiply_F)
% Part (f)
Det_F = det(F);
disp(Det_F)
Part
Answer
*
D = [-5,3;13,-5;-6,81];
E = [4,11,-42;40,3,-2];
F = [-4,28,4;4,5,-15;26,32,-11];
*
F*F-1=100010001
*
D.5=-3125243371293-3125-77763486784401
*
8*F=-32224323240-120208256-88
*
E*F=-1064-1177313-2001071137
*
detF=-11396
Question Two
MATLAB CODE
% system of 3 by 3 linear algebraic equations
% -5x + 3y -2z = -19
% 2x -7y -4z = -28
% -4x +y -2z = 16
clc; clear;
A = [-5,3,-2;2,-7,-4;-4,1,-2]; % Coefficient matrix
b = [-19;-28;16]; % Right hand side
Other Topics:
- Optimization Mathematics & Economics Math Problem PaperDescription: Volume= (U+3)m3, where U is the third digit of the student number. In this case the student number is 1839996 and so the third digit is 9. So, Volume=(9+3)m3=12m3, The cost breakdown is given by: * Cost of the base and top is 8 Pounds/m2 * Cost of the front side is (10+Z)Pounds/m2= 16 Pounds/m2...5 pages/≈1375 words| 3 Sources | APA | Mathematics & Economics | Math Problem |
- Formation and Solution of Quadratic Equations Mathematics ProblemDescription: This gives values of z as; z=4, and z=36. Since z=x2 we have the four values of x as x=-6, x=-2, x=2, x=6. The corresponding values of y, using y=6x are y=-1 when x=-6, y= -3 when x=-2, and y=3 when x=2, y=1 when x=6. Step 3: Computation of the required result...1 page/≈275 words| 1 Source | APA | Mathematics & Economics | Math Problem |
- Linear Equations Mathematics & Economics Math ProblemDescription: We have adopted the notation by (Anthony & Burgess, 2014), where in this case, ∆y∆x=1,500.00 $/year is the annual rate of change of salary and C is a constant denoting the starting annual salary. Using ∆y∆x=1,500.00 $/year we can write the model equation as...1 page/≈550 words| 1 Source | APA | Mathematics & Economics | Math Problem |