This is java program to convert the system of linear equations to matrix form. The input is the coefficient of each variable and constant. Class rearranges them and converts them into matrix form, which aids solving them.
Here is the source code of the Java Program to Represent Linear Equations in Matrix Form. The Java program is successfully compiled and run on a Windows system. The program output is also shown below.
//This is a sample program to represent linear equations into matrix from
import java.util.Scanner;
public class Matrix_Representation_Equations
{
public static void main(String args[])
{
char []var = {'x', 'y', 'z', 'w', 'a', 'b', 'c', 'd', 'e'};
System.out.println("Enter the number of variables in the equations: ");
Scanner input = new Scanner(System.in);
int n = input.nextInt();
System.out.println("Enter the coefficients of each variable for each equations");
System.out.println("ax + by + cz + ... = d");
int [][]mat = new int[n][n];
int [][]constants = new int[n][1];
for(int i=0; i<n; i++)
{
for(int j=0; j<n; j++)
{
mat[i][j] = input.nextInt();
}
constants[i][0] = input.nextInt();
}
System.out.println("Matrix representation is: ");
for(int i=0; i<n; i++)
{
for(int j=0; j<n; j++)
{
System.out.print(" "+mat[i][j]);
}
System.out.print(" "+ var[i]);
System.out.print(" = "+ constants[i][0]);
System.out.println();
}
input.close();
}
}
Output:
$ javac Matrix_Representation_Equations.java $ java Matrix_Representation_Equations Enter the number of variables in the equations: 3 Enter the coefficients of each variable for each equations: ax + by + cz + ... = d 1 2 3 4 5 6 7 8 9 0 1 2 Matrix representation is: 1 2 3 x = 4 5 6 7 y = 8 9 0 1 z = 2
Related posts:
Java Program to Check Whether a Directed Graph Contains a Eulerian Path
Java Program to Implement Gauss Jordan Elimination
The SpringJUnitConfig and SpringJUnitWebConfig Annotations in Spring 5
“Stream has already been operated upon or closed” Exception in Java
Java Program to implement Circular Buffer
Functional Interface trong Java 8
Java Program to Generate a Graph for a Given Fixed Degree Sequence
Toán tử instanceof trong java
Changing Annotation Parameters At Runtime
Java Program to Check Cycle in a Graph using Topological Sort
Spring Boot - Hystrix
Java Program to Implement Dijkstra’s Algorithm using Set
Java Program to Find All Pairs Shortest Path
Java Program to Find the Shortest Path Between Two Vertices Using Dijkstra’s Algorithm
Hướng dẫn Java Design Pattern – Object Pool
Xử lý ngoại lệ đối với trường hợp ghi đè phương thức trong java
Java CyclicBarrier vs CountDownLatch
A Guide to TreeSet in Java
Java Program to Implement Sparse Matrix
A Guide to System.exit()
Java Program to Implement Sorted Array
Java Program to Generate Random Numbers Using Probability Distribution Function
Guide to the Volatile Keyword in Java
Tránh lỗi NullPointerException trong Java như thế nào?
Java Program to implement Sparse Vector
Hướng dẫn Java Design Pattern – Builder
Apache Camel with Spring Boot
The Basics of Java Security
Rest Web service: Filter và Interceptor với Jersey 2.x (P2)
Java Program to Perform Right Rotation on a Binary Search Tree
Java Program to Implement Flood Fill Algorithm
Spring MVC Async vs Spring WebFlux