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:
Build a REST API with Spring and Java Config
Inject Parameters into JUnit Jupiter Unit Tests
String Initialization in Java
Java Program to Find the Peak Element of an Array O(n) time (Naive Method)
Spring WebClient Requests with Parameters
Jackson – Marshall String to JsonNode
Introduction to Spring Boot CLI
Java IO vs NIO
Spring RestTemplate Error Handling
Java – Reader to InputStream
Apache Commons Collections SetUtils
Life Cycle of a Thread in Java
Java Program to Find Nearest Neighbor for Dynamic Data Set
Java Program to Implement Repeated Squaring Algorithm
How to Convert List to Map in Java
Spring Boot - Unit Test Cases
Java Program to Implement Solovay Strassen Primality Test Algorithm
Java Program to Implement K Way Merge Algorithm
Adding Parameters to HttpClient Requests
Control Structures in Java
Java Program to Describe the Representation of Graph using Incidence Matrix
Spring Security Remember Me
Sử dụng JDBC API thực thi câu lệnh truy vấn dữ liệu
Java Program to Check whether Undirected Graph is Connected using BFS
Pagination and Sorting using Spring Data JPA
Assert an Exception is Thrown in JUnit 4 and 5
Tính đa hình (Polymorphism) trong Java
Case-Insensitive String Matching in Java
Debug a HttpURLConnection problem
Java Program to Implement Multi-Threaded Version of Binary Search Tree
Giới thiệu Swagger – Công cụ document cho RESTfull APIs
Java Program to Implement Dijkstra’s Algorithm using Queue