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:
A Guide to Java HashMap
Java Program to Implement Threaded Binary Tree
Spring Boot - Flyway Database
Spring Boot - Runners
Why String is Immutable in Java?
Spring Boot Application as a Service
Guava – Join and Split Collections
Java Program to Perform Deletion in a BST
Hướng dẫn Java Design Pattern – Memento
Java Program to Perform Inorder Non-Recursive Traversal of a Given Binary Tree
Một số từ khóa trong Java
Reversing a Linked List in Java
Java Program to Perform Searching Based on Locality of Reference
Abstract class và Interface trong Java
Supplier trong Java 8
Java Program to Implement Attribute API
Java Program to Implement WeakHashMap API
Inject Parameters into JUnit Jupiter Unit Tests
Java Program to Print the Kind of Rotation the AVL Tree is Undergoing
Java Program to Find Number of Articulation points in a Graph
Java Program to Check if a Given Set of Three Points Lie on a Single Line or Not
Integer Constant Pool trong Java
Java Program to Perform Insertion in a BST
Java Program to Implement Floyd Cycle Algorithm
Java Program to Implement PriorityBlockingQueue API
New Features in Java 14
How to Get a Name of a Method Being Executed?
Java Program to Implement Graph Coloring Algorithm
ArrayList trong java
Spring Boot - Enabling HTTPS
Spring WebClient Filters
Java Program to Implement Quick Sort with Given Complexity Constraint