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 Implement the RSA Algorithm
Creating a Generic Array in Java
Spring Boot - Rest Template
Java Program to Implement Pagoda
Java Program to Perform Cryptography Using Transposition Technique
Java Program to Print only Odd Numbered Levels of a Tree
Request a Delivery / Read Receipt in Javamail
Spring WebClient Filters
Spring MVC and the @ModelAttribute Annotation
Spring Boot Application as a Service
Java Program to Implement Aho-Corasick Algorithm for String Matching
@Before vs @BeforeClass vs @BeforeEach vs @BeforeAll
Abstract class và Interface trong Java
Java Program to Perform the Shaker Sort
Hướng dẫn Java Design Pattern – Singleton
Ép kiểu trong Java (Type casting)
Java Program to Implement Find all Cross Edges in a Graph
Introduction to Liquibase Rollback
Java Program to Implement Fermat Factorization Algorithm
Java Program to Implement Binary Search Tree
Java Program to Implement Borwein Algorithm
Java Program to Implement Meldable Heap
Java Program to Implement Maximum Length Chain of Pairs
A Guide to System.exit()
Control Structures in Java
Java – Create a File
Java Program to Implement Variable length array
Spring Boot - Tomcat Port Number
Java Program to Perform Insertion in a 2 Dimension K-D Tree
Read an Outlook MSG file
DynamoDB in a Spring Boot Application Using Spring Data
Spring JDBC