Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
3 views3 pages

Temp WMX 2

The document contains a series of calculations and matrix operations performed using wxMaxima, including matrix addition, multiplication, and row operations. It showcases various matrices and the results of operations such as row swapping and Gaussian elimination. The work is attributed to Dr. Namita Aggarwal and dated August 13, 2025.

Uploaded by

Mayank Aggarwal
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)
3 views3 pages

Temp WMX 2

The document contains a series of calculations and matrix operations performed using wxMaxima, including matrix addition, multiplication, and row operations. It showcases various matrices and the results of operations such as row swapping and Gaussian elimination. The work is attributed to Dr. Namita Aggarwal and dated August 13, 2025.

Uploaded by

Mayank Aggarwal
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/ 3

wxMaxima document 1 / 3

MfC Labwork 13-Aug-2025


Dr. Namita Aggarwal (46243723) Sem I-A
a:2+3;
5
a+2;
7
2+3;
5−2;
1·4;
5 3 4
m:matrix([2,23,1],[3,4,1],[4,1,2]);
2 23 1

3 4 1

4 1 2

m+m;
4 46 2

6 8 2

8 2 4

m:matrix([2,223,1], [3,4,1], [4,1,2]);


2 223 1

3 4 1

4 1 2

m2: matrix(
[2,23,1],
[3,4,1],
[4,1,2]
);
2 23 1

3 4 1

4 1 2

m3:m+m2;
wxMaxima document 2 / 3

4 246 2

6 8 2

8 2 4

m4:m2·m2;
4 529 1

9 16 1

16 1 4

m5:m.m2;
677 939 227

22 86 9

19 98 9

m;
2 223 1

3 4 1

4 1 2

m2;
2 23 1

3 4 1

4 1 2

m2:rowswap(m2,1,2);
3 4 1

2 23 1

4 1 2

m2;
3 4 1

2 23 1

4 1 2

A: matrix(
[1,2,−1],
[2,0,4],
[3,−1,2]
);
wxMaxima document 3 / 3

1 2 −1

2 0 4

3 −1 2

R2=R2-2*R1, R3=R3-3*R1
A;
1 2 −1

−2 −8 8

3 −1 2

A[2]:A[2]−2·A[1]$A;
1 2 −1

0 −4 6

3 −1 2

A[3]:A[3]−3·A[1]$A;
1 2 −1

0 −4 6

0 −7 5

A:rowop(A,2,1,2);
A:rowop(A,3,1,3);
A[3]:A[3]−7/4·A[2]$A;
1 2 −1

0 −4 6

11
0 0 −
2

You might also like