Java Program to Represent Linear Equations in Matrix Form

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:

Removing all duplicates from a List in Java
Compact Strings in Java 9
Intro to Spring Boot Starters
Java Program to Implement Quick Sort Using Randomization
Java Program to Implement Dijkstra’s Algorithm using Set
Java Program to Generate All Possible Combinations of a Given List of Numbers
Java Program to implement Circular Buffer
Introduction to Java 8 Streams
More Jackson Annotations
Java Program to Implement Ford–Fulkerson Algorithm
The Order of Tests in JUnit
The HttpMediaTypeNotAcceptableException in Spring MVC
Spring Boot - Database Handling
Java Program to Implement Dijkstra’s Algorithm using Priority Queue
Call Methods at Runtime Using Java Reflection
Java Program to Perform Right Rotation on a Binary Search Tree
Java Program to Implement Queue
Java Program to Implement Efficient O(log n) Fibonacci generator
HTTP Authentification and CGI/Servlet
Simultaneous Spring WebClient Calls
Java Program to Find the Edge Connectivity of a Graph
Chuyển đổi Array sang ArrayList và ngược lại
Java Program to Implement Adjacency List
Hướng dẫn sử dụng Printing Service trong Java
Java Program to Check Whether a Given Point is in a Given Polygon
Join and Split Arrays and Collections in Java
Hướng dẫn kết nối cơ sở dữ liệu với Java JDBC
Java Program to Find Minimum Number of Edges to Cut to make the Graph Disconnected
String Joiner trong Java 8
Working with Tree Model Nodes in Jackson
Java Program to Generate Random Numbers Using Multiply with Carry Method
New Features in Java 11