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:
Truyền giá trị và tham chiếu trong java
Using the Not Operator in If Conditions in Java
Getting Started with Custom Deserialization in Jackson
List Interface trong Java
Spring WebFlux Filters
Java Program to Find the Minimum Element of a Rotated Sorted Array using Binary Search approach
Java Program to Implement Find all Cross Edges in a Graph
Java Program to Implement Ternary Heap
Java Program to Check if an UnDirected Graph is a Tree or Not Using DFS
Java Program to Find Minimum Number of Edges to Cut to make the Graph Disconnected
StringBuilder vs StringBuffer in Java
Migrating from JUnit 4 to JUnit 5
How to Get a Name of a Method Being Executed?
Refactoring Design Pattern với tính năng mới trong Java 8
Java Program to Implement Adjacency Matrix
Using JWT with Spring Security OAuth (legacy stack)
Hướng dẫn Java Design Pattern – Abstract Factory
Java Collections Interview Questions
Handling Errors in Spring WebFlux
Assert an Exception is Thrown in JUnit 4 and 5
Java Program to Use Above Below Primitive to Test Whether Two Lines Intersect
Java Program to Generate All Subsets of a Given Set in the Gray Code Order
Jackson – Decide What Fields Get Serialized/Deserialized
Java Program to Construct K-D Tree for 2 Dimensional Data
Simultaneous Spring WebClient Calls
Java Program to Find kth Largest Element in a Sequence
Hamcrest Collections Cookbook
Java Program to Find Basis and Dimension of a Matrix
Java Program to Generate Randomized Sequence of Given Range of Numbers
Java Program to Implement the Hill Cypher
Spring Boot - Batch Service
Java Program to Find Strongly Connected Components in Graphs