You are on page 1of 2

Q2

In[21]:= A = {{5, 1, 2}, {- 3, 9, 4}, {1, 2, - 7}};


X = {x1, x2, x3 };
x = {0, 0, 0};
B = {10, - 14, - 33 };
Print ["AX = B"]
Print ["The system of linear equations in matrix form is :",
MatrixForm [A], "* " MatrixForm [X], "= ", MatrixForm [B]]
l = {{0, 0, 0}, {- 3, 0, 0}, {1, 2, 0}};
u = {{0, 1, 2}, {0, 0, 4}, {0, 0, 0}};
d = {{5, 0, 0}, {0, 9, 0}, {0, 0, - 7}};
For [k = 1, k ≤ 10, k ++ ,
y = Inverse [d].(B - l.x - u.x);
x = N[y];
Print [k, "th approximate solution is = ", MatrixForm [x]]]
Print ["the final solution is = ", Matrixform [x]]
2

AX = B

5 1 2 x1 10
The system of linear equations in matrix form is : - 3 9 4 * x2 = - 14
1 2 -7 x3 - 33

2.
1th approximate solution is = - 1.55556
4.71429
0.425397
2th approximate solution is = - 2.98413
4.55556
0.774603
3th approximate solution is = - 3.43845
3.92245
1.11871
4th approximate solution is = - 3.04067
3.84253
1.07112
5th approximate solution is = - 2.89044
4.00534
0.975953
6th approximate solution is = - 2.97867
4.04146
0.979148
7th approximate solution is = - 3.02644
4.00266
1.00422
8th approximate solution is = - 3.00813
3.98947
1.00584
9th approximate solution is = - 2.99391
3.99828
0.99947
10th approximate solution is = - 2.99729
4.00257

the final solution is = Matrixform [{ 0.99947 , - 2.99729 , 4.00257 }]

You might also like