Top Banner
1. ADDITION OF TWO MATRICES USING C PROGRAM C program for addition of two matrices using arrays source code. Matrix addition in c language: C code: #include<stdio.h> int main(){ int a[3][3],b[3][3],c[3][3],i,j; printf("Enter the First matrix->"); for(i=0;i<3;i++) for(j=0;j<3;j++) scanf("%d",&a[i][j]); printf("\nEnter the Second matrix->"); for(i=0;i<3;i++) for(j=0;j<3;j++) scanf("%d",&b[i][j]); printf("\nThe First matrix is\n"); for(i=0;i<3;i++){ printf("\n"); for(j=0;j<3;j++) printf("%d\t",a[i][j]); } printf("\nThe Second matrix is\n"); for(i=0;i<3;i++){ printf("\n"); for(j=0;j<3;j++) printf("%d\t",b[i][j]); } for(i=0;i<3;i++) for(j=0;j<3;j++)
27

1. ADDITION OF TWO MATRICES USING C PROGRAM€¦ · Web view1. ADDITION OF TWO MATRICES USING C PROGRAM. C program for addition of two matrices using arrays source code. Matrix addition

May 26, 2018

Download

Documents

ngolien
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: 1. ADDITION OF TWO MATRICES USING C PROGRAM€¦ · Web view1. ADDITION OF TWO MATRICES USING C PROGRAM. C program for addition of two matrices using arrays source code. Matrix addition

1. ADDITION OF TWO MATRICES USING C PROGRAM

C program for addition of two matrices using arrays source code. Matrix addition in c language:

C code:

#include<stdio.h>int main(){  int a[3][3],b[3][3],c[3][3],i,j;  printf("Enter the First matrix->");  for(i=0;i<3;i++)      for(j=0;j<3;j++)           scanf("%d",&a[i][j]);  printf("\nEnter the Second matrix->");  for(i=0;i<3;i++)      for(j=0;j<3;j++)           scanf("%d",&b[i][j]);  printf("\nThe First matrix is\n");  for(i=0;i<3;i++){      printf("\n");      for(j=0;j<3;j++)           printf("%d\t",a[i][j]);  }  printf("\nThe Second matrix is\n");  for(i=0;i<3;i++){      printf("\n");      for(j=0;j<3;j++)      printf("%d\t",b[i][j]);   }   for(i=0;i<3;i++)       for(j=0;j<3;j++)            c[i][j]=a[i][j]+b[i][j];   printf("\nThe Addition of two matrix is\n");   for(i=0;i<3;i++){       printf("\n");       for(j=0;j<3;j++)            printf("%d\t",c[i][j]);

Page 2: 1. ADDITION OF TWO MATRICES USING C PROGRAM€¦ · Web view1. ADDITION OF TWO MATRICES USING C PROGRAM. C program for addition of two matrices using arrays source code. Matrix addition

   }   return 0;}

Algorithm:

Addition of two matrices:

Rule: Addition of two matrices is only possible if both matrices are of same size.

Suppose two matrices A and B is of same size m X n

Sum of two matrices is defined as

(A + B)ij  = Aij + Bij

Where 1 ≤ i ≤ m and 1 ≤ j ≤ n

For example:Suppose two matrices A and B of size of 2 X 3 is as follow:

Page 3: 1. ADDITION OF TWO MATRICES USING C PROGRAM€¦ · Web view1. ADDITION OF TWO MATRICES USING C PROGRAM. C program for addition of two matrices using arrays source code. Matrix addition

2. SUBTRACTION OF TWO MATRICES USING C PROGRAM#include<stdio.h>int main(){  int a[3][3],b[3][3],c[3][3],i,j;  printf("Enter the First matrix->");  for(i=0;i<3;i++)      for(j=0;j<3;j++)           scanf("%d",&a[i][j]);  printf("\nEnter the Second matrix->");  for(i=0;i<3;i++)      for(j=0;j<3;j++)           scanf("%d",&b[i][j]);  printf("\nThe First matrix is\n");  for(i=0;i<3;i++){      printf("\n");      for(j=0;j<3;j++)           printf("%d\t",a[i][j]);  }  printf("\nThe Second matrix is\n");  for(i=0;i<3;i++){      printf("\n");      for(j=0;j<3;j++)      printf("%d\t",b[i][j]);   }   for(i=0;i<3;i++)       for(j=0;j<3;j++)            c[i][j]=a[i][j]-b[i][j];   printf("\nThe Subtraction of two matrix is\n");   for(i=0;i<3;i++){       printf("\n");       for(j=0;j<3;j++)            printf("%d\t",c[i][j]);   }   return 0;}

Page 4: 1. ADDITION OF TWO MATRICES USING C PROGRAM€¦ · Web view1. ADDITION OF TWO MATRICES USING C PROGRAM. C program for addition of two matrices using arrays source code. Matrix addition

Subtraction of two matrixes:

Rule: Subtraction of two matrixes is only possible if both matrixes are of same size.

Suppose two matrixes A and B is of same size m X n

Subtraction of two marixes is defined as

(A - B)ij  = Aij - Bij

Where 1 ≤ i ≤ m and 1 ≤ j ≤ n

For example:Suppose two matrixes A and B of size of 3 X 2 is as follow:

3. MULTIPLICATION OF TWO MATRICES USING C PROGRAM

Page 5: 1. ADDITION OF TWO MATRICES USING C PROGRAM€¦ · Web view1. ADDITION OF TWO MATRICES USING C PROGRAM. C program for addition of two matrices using arrays source code. Matrix addition

1. C code for matrix multiplication

2. C program for matrix multiplication3. Write a program for matrix multiplication in c4. How to multiply two matrixes in c5. Matrix multiplication program in c language6. Matrix multiplication in c using array

#include<stdio.h>int main(){  int a[5][5],b[5][5],c[5][5],i,j,k,sum=0,m,n,o,p;  printf("\nEnter the row and column of first matrix");  scanf("%d %d",&m,&n);  printf("\nEnter the row and column of second matrix");  scanf("%d %d",&o,&p);  if(n!=o){      printf("Matrix mutiplication is not possible");      printf("\nColumn of first matrix must be same as row of second matrix");  }  else{      printf("\nEnter the First matrix->");      for(i=0;i<m;i++)      for(j=0;j<n;j++)           scanf("%d",&a[i][j]);      printf("\nEnter the Second matrix->");      for(i=0;i<o;i++)      for(j=0;j<p;j++)           scanf("%d",&b[i][j]);      printf("\nThe First matrix is\n");      for(i=0;i<m;i++){      printf("\n");      for(j=0;j<n;j++){           printf("%d\t",a[i][j]);      }

Page 6: 1. ADDITION OF TWO MATRICES USING C PROGRAM€¦ · Web view1. ADDITION OF TWO MATRICES USING C PROGRAM. C program for addition of two matrices using arrays source code. Matrix addition

      }      printf("\nThe Second matrix is\n");      for(i=0;i<o;i++){      printf("\n");      for(j=0;j<p;j++){           printf("%d\t",b[i][j]);      }             }      for(i=0;i<m;i++)      for(j=0;j<p;j++)           c[i][j]=0;      for(i=0;i<m;i++){ //row of first matrix      for(j=0;j<p;j++){  //column of second matrix           sum=0;           for(k=0;k<n;k++)               sum=sum+a[i][k]*b[k][j];           c[i][j]=sum;      }      }  }  printf("\nThe multiplication of two matrix is\n");  for(i=0;i<m;i++){      printf("\n");      for(j=0;j<p;j++){           printf("%d\t",c[i][j]);      }  }  return 0;}

Alogrithm:

Multiplication of two matrixes:

Rule: Multiplication of two matrixes is only possible if first matrix has size m X n and other matrix has size n x r. Where m, n and r are any positive integer.

Page 7: 1. ADDITION OF TWO MATRICES USING C PROGRAM€¦ · Web view1. ADDITION OF TWO MATRICES USING C PROGRAM. C program for addition of two matrices using arrays source code. Matrix addition

Multiplication of two matrixes is defined as

Where 1 ≤ i ≤ m and 1 ≤ j ≤ n

For example:Suppose two matrixes A and B of size of 2 x 2 and 2 x 3 respectively:

Page 8: 1. ADDITION OF TWO MATRICES USING C PROGRAM€¦ · Web view1. ADDITION OF TWO MATRICES USING C PROGRAM. C program for addition of two matrices using arrays source code. Matrix addition

4. FIND OUT SUM OF DIAGONAL ELEMENTS OF A MATRIX USING

Sum of diagonal elements of a matrix in c

#include<stdio.h>

Page 9: 1. ADDITION OF TWO MATRICES USING C PROGRAM€¦ · Web view1. ADDITION OF TWO MATRICES USING C PROGRAM. C program for addition of two matrices using arrays source code. Matrix addition

int main(){

  int a[10][10],i,j,sum=0,m,n;

  printf("\nEnter the row and column of matrix: ");  scanf("%d %d",&m,&n);

  printf("\nEnter the elements of matrix: ");  for(i=0;i<m;i++)      for(j=0;j<n;j++)           scanf("%d",&a[i][j]);  printf("\nThe matrix is\n");

  for(i=0;i<m;i++){      printf("\n");      for(j=0;j<m;j++){      printf("%d\t",a[i][j]);      } } for(i=0;i<m;i++){     for(j=0;j<n;j++){          if(i==j)              sum=sum+a[i][j];     } } printf("\n\nSum of the diagonal elements of a matrix is: %d",sum);

 return 0;}

Sample output:

Enter the row and column of matrix: 3 3Enter the elements of matrix: 2356792

Page 10: 1. ADDITION OF TWO MATRICES USING C PROGRAM€¦ · Web view1. ADDITION OF TWO MATRICES USING C PROGRAM. C program for addition of two matrices using arrays source code. Matrix addition

67The matrix is2       3       56       7       92       6       7Sum of the diagonal elements of a matrix is: 16

Alogrithm:Sum of diagonal element of matrix:

Diagonal elements have been shown in the bold letter.

We can observer the properties any element Aij will diagonal element if and only if i = j

Page 11: 1. ADDITION OF TWO MATRICES USING C PROGRAM€¦ · Web view1. ADDITION OF TWO MATRICES USING C PROGRAM. C program for addition of two matrices using arrays source code. Matrix addition

5. Write a c program to find out transport of a matrix

C program for transpose of a matrixC program to find transpose of given matrix#include<stdio.h>int main(){  int a[10][10],b[10][10],i,j,k=0,m,n;  printf("\nEnter the row and column of matrix");  scanf("%d %d",&m,&n);  printf("\nEnter the First matrix->");  for(i=0;i<m;i++)      for(j=0;j<n;j++)           scanf("%d",&a[i][j]);  printf("\nThe matrix is\n");  for(i=0;i<m;i++){      printf("\n");      for(j=0;j<m;j++){           printf("%d\t",a[i][j]);      }  }  for(i=0;i<m;i++)      for(j=0;j<n;j++)           b[i][j]=0;  for(i=0;i<m;i++){      for(j=0;j<n;j++){           b[i][j]=a[j][i];           printf("\n%d",b[i][j]);      }  }  printf("\n\nTraspose of a matrix is -> ");  for(i=0;i<m;i++){      printf("\n");      for(j=0;j<m;j++){

Page 12: 1. ADDITION OF TWO MATRICES USING C PROGRAM€¦ · Web view1. ADDITION OF TWO MATRICES USING C PROGRAM. C program for addition of two matrices using arrays source code. Matrix addition

           printf("%d\t",b[i][j]);      }  }  return 0;}

6. C program to find inverse of a matrix

How to find inverse of a matrix in cC code to find inverse of a matrixInverse of a 3x3 matrix in c

#include<stdio.h>

int main(){

  int a[3][3],i,j;  float determinant=0;

  printf("Enter the 9 elements of matrix: ");  for(i=0;i<3;i++)      for(j=0;j<3;j++)           scanf("%d",&a[i][j]);

  printf("\nThe matrix is\n");  for(i=0;i<3;i++){      printf("\n");      for(j=0;j<3;j++)           printf("%d\t",a[i][j]);  }

  for(i=0;i<3;i++)      determinant = determinant + (a[0][i]*(a[1][(i+1)%3]*a[2][(i+2)%3] - a[1][(i+2)%3]*a[2][(i+1)%3]));

Page 13: 1. ADDITION OF TWO MATRICES USING C PROGRAM€¦ · Web view1. ADDITION OF TWO MATRICES USING C PROGRAM. C program for addition of two matrices using arrays source code. Matrix addition

   printf("\nInverse of matrix is: \n\n");   for(i=0;i<3;i++){      for(j=0;j<3;j++)           printf("%.2f\t",((a[(i+1)%3][(j+1)%3] * a[(i+2)%3][(j+2)%3]) - (a[(i+1)%3][(j+2)%3]*a[(i+2)%3][(j+1)%3]))/ determinant);       printf("\n");   }

   return 0;}

Enter the 9 elements of matrix: 352158392

The matrix is

3       5       21       5       83       9       2Inverse of matrix is:

0.70    -0.25   0.07-0.09   -0.00   0.14-0.34   0.25    -0.11

7. Lower triangular matrix in c

Page 14: 1. ADDITION OF TWO MATRICES USING C PROGRAM€¦ · Web view1. ADDITION OF TWO MATRICES USING C PROGRAM. C program for addition of two matrices using arrays source code. Matrix addition

C code to print or display lower triangular matrix

#include<stdio.h>int main(){  int a[3][3],i,j;  float determinant=0;

  printf("Enter the 9 elements of matrix: ");  for(i=0;i<3;i++)      for(j=0;j<3;j++)           scanf("%d",&a[i][j]);

  printf("\nThe matrix is\n");  for(i=0;i<3;i++){      printf("\n");      for(j=0;j<3;j++)           printf("%d\t",a[i][j]);  }

   printf("\nSetting zero in upper triangular matrix\n");   for(i=0;i<3;i++){      printf("\n");      for(j=0;j<3;j++)           if(i<=j)             printf("%d\t",a[i][j]);           else             printf("%d\t",0);  }

   return 0;}

Enter the 9 elements of matrix: 1234567

Page 15: 1. ADDITION OF TWO MATRICES USING C PROGRAM€¦ · Web view1. ADDITION OF TWO MATRICES USING C PROGRAM. C program for addition of two matrices using arrays source code. Matrix addition

89

The matrix is

1       2       34       5       67       8       9Setting zero in upper triangular matrix

1       2       30       5       60       0       9

8. Upper triangular matrix in c

C code to print or display upper triangular matrix

#include<stdio.h>int main(){  int a[3][3],i,j;  float determinant=0;

  printf("Enter the 9 elements of matrix: ");  for(i=0;i<3;i++)      for(j=0;j<3;j++)           scanf("%d",&a[i][j]);

  printf("\nThe matrix is\n");  for(i=0;i<3;i++){      printf("\n");      for(j=0;j<3;j++)           printf("%d\t",a[i][j]);  }

Page 16: 1. ADDITION OF TWO MATRICES USING C PROGRAM€¦ · Web view1. ADDITION OF TWO MATRICES USING C PROGRAM. C program for addition of two matrices using arrays source code. Matrix addition

   printf("\nSetting zero in upper triangular matrix\n");   for(i=0;i<3;i++){      printf("\n");      for(j=0;j<3;j++)           if(i>=j)             printf("%d\t",a[i][j]);           else             printf("%d\t",0);  }

   return 0;}

Sample output:Enter the 9 elements of matrix: 123456789

The matrix is

1       2       34       5       67       8       9Setting zero in upper triangular matrix

1       0       04       5       07       8       9

9. Strassen's matrix multiplication program in c

Page 17: 1. ADDITION OF TWO MATRICES USING C PROGRAM€¦ · Web view1. ADDITION OF TWO MATRICES USING C PROGRAM. C program for addition of two matrices using arrays source code. Matrix addition

C code of two 2 by 2 matrix multiplication using Strassen algorithm:

#include<stdio.h>int main(){  int a[2][2],b[2][2],c[2][2],i,j;  int m1,m2,m3,m4,m5,m6,m7;

  printf("Enter the 4 elements of first matrix: ");  for(i=0;i<2;i++)      for(j=0;j<2;j++)           scanf("%d",&a[i][j]);

  printf("Enter the 4 elements of second matrix: ");  for(i=0;i<2;i++)      for(j=0;j<2;j++)           scanf("%d",&b[i][j]);

  printf("\nThe first matrix is\n");  for(i=0;i<2;i++){      printf("\n");      for(j=0;j<2;j++)           printf("%d\t",a[i][j]);  }

  printf("\nThe second matrix is\n");  for(i=0;i<2;i++){      printf("\n");      for(j=0;j<2;j++)           printf("%d\t",b[i][j]);  }

  m1= (a[0][0] + a[1][1])*(b[0][0]+b[1][1]);  m2= (a[1][0]+a[1][1])*b[0][0];  m3= a[0][0]*(b[0][1]-b[1][1]);  m4= a[1][1]*(b[1][0]-b[0][0]);  m5= (a[0][0]+a[0][1])*b[1][1];

Page 18: 1. ADDITION OF TWO MATRICES USING C PROGRAM€¦ · Web view1. ADDITION OF TWO MATRICES USING C PROGRAM. C program for addition of two matrices using arrays source code. Matrix addition

  m6= (a[1][0]-a[0][0])*(b[0][0]+b[0][1]);  m7= (a[0][1]-a[1][1])*(b[1][0]+b[1][1]);

  c[0][0]=m1+m4-m5+m7;  c[0][1]=m3+m5;  c[1][0]=m2+m4;  c[1][1]=m1-m2+m3+m6;

   printf("\nAfter multiplication using \n");   for(i=0;i<2;i++){      printf("\n");      for(j=0;j<2;j++)           printf("%d\t",c[i][j]);   }

   return 0;}

Sample output:Enter the 4 elements of first matrix: 1234Enter the 4 elements of second matrix: 5678

The first matrix is

1       23       4The second matrix is

5       67       8After multiplication using

19      2243      50

Page 19: 1. ADDITION OF TWO MATRICES USING C PROGRAM€¦ · Web view1. ADDITION OF TWO MATRICES USING C PROGRAM. C program for addition of two matrices using arrays source code. Matrix addition

10. C program to find determinant of a matrix

Code to find determinant of a matrix

C program to calculate determinant of a matrix

#include<stdio.h>int main(){  int a[3][3],i,j;  int determinant=0;

  printf("Enter the 9 elements of matrix: ");  for(i=0;i<3;i++)      for(j=0;j<3;j++)           scanf("%d",&a[i][j]);

  printf("\nThe First matrix is\n");  for(i=0;i<3;i++){      printf("\n");      for(j=0;j<3;j++)           printf("%d\t",a[i][j]);  }

  for(i=0;i<3;i++)      determinant = determinant + (a[0][i]*(a[1][(i+1)%3]*a[2][(i+2)%3] - a[1][(i+2)%3]*a[2][(i+1)%3]));

  printf("\nDeterminant of matrix is: %d",determinant);

   return 0;}

Page 20: 1. ADDITION OF TWO MATRICES USING C PROGRAM€¦ · Web view1. ADDITION OF TWO MATRICES USING C PROGRAM. C program for addition of two matrices using arrays source code. Matrix addition

C code for Determinant of 2X2 matrix:

#include<stdio.h>int main(){  int a[2][2],i,j;  long determinant;

  printf("Enter the 4 elements of matrix: ");  for(i=0;i<2;i++)      for(j=0;j<2;j++)           scanf("%d",&a[i][j]);

  printf("\nThe matrix is\n");  for(i=0;i<2;i++){      printf("\n");      for(j=0;j<2;j++)           printf("%d\t",a[i][j]);  }

  determinant = a[0][0]*a[1][1] - a[1][0]*a[0][1];

  printf("\nDeterminant of 2X2 matrix: %ld",determinant);    return 0;}

Enter the 4 elements of matrix: 4839

The matrix is

4       83       9

Determinant of 2X2 matrix: 12

C code for Determinant of 3X3 matrix:

#include<stdio.h>

Page 21: 1. ADDITION OF TWO MATRICES USING C PROGRAM€¦ · Web view1. ADDITION OF TWO MATRICES USING C PROGRAM. C program for addition of two matrices using arrays source code. Matrix addition

int main(){

  int a[3][3],i,j;

  long determinant;

  printf("Enter the 9 elements of matrix: ");  for(i=0;i<3;i++)      for(j=0;j<3;j++)           scanf("%d",&a[i][j]);

  printf("\nThe matrix is\n");  for(i=0;i<3;i++){      printf("\n");      for(j=0;j<3;j++)           printf("%d\t",a[i][j]);  }

  determinant = a[0][0]*((a[1][1]*a[2][2]) - (a[2][1]*a[1][2])) -a[0][1]*(a[1][0]*a[2][2] - a[2][0]*a[1][2]) + a[0][2]*(a[1][0]*a[2][1] - a[2][0]*a[1][1]);

  printf("\nDeterminant of 3X3 matrix: %ld",determinant);    return 0;}

Sample output:Enter the 9 elements of matrix: 123456789

The matrix is

Page 22: 1. ADDITION OF TWO MATRICES USING C PROGRAM€¦ · Web view1. ADDITION OF TWO MATRICES USING C PROGRAM. C program for addition of two matrices using arrays source code. Matrix addition

1       2       34       5       67       8       9

Determinant of 3X3 matrix: 0

Alogrithm:Determinant is possible only for square matrixes i.e. n by n matrixes.Determinant of 2 by 2 matrix:

Determinant of matrix has defined as: ad – cb

Determinant of 3 by 3 matrix:

Determinant of matrix has defined as: a00(a11*a22 – a21*a12) + a01(a10*a22 – a20*a12) + a02(a10*a21 – a20*a11)