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 Binomial Tree
Java Program to Generate All Possible Combinations of a Given List of Numbers
Java Program to Check if it is a Sparse Matrix
Spring Boot Tutorial – Bootstrap a Simple Application
Properties with Spring and Spring Boot
Template Engines for Spring
Database Migrations with Flyway
The DAO with JPA and Spring
Spring Security Form Login
Java Program to Implement Max-Flow Min-Cut Theorem
Different Ways to Capture Java Heap Dumps
Intro to the Jackson ObjectMapper
Custom Cascading in Spring Data MongoDB
Test a REST API with Java
Quick Intro to Spring Cloud Configuration
How to Delay Code Execution in Java
Java Program to Apply DFS to Perform the Topological Sorting of a Directed Acyclic Graph
TreeSet và sử dụng Comparable, Comparator trong java
Java Program to Perform Preorder Non-Recursive Traversal of a Given Binary Tree
Java – Combine Multiple Collections
Exception Handling in Java
Java Program to Perform Inorder Recursive Traversal of a Given Binary Tree
Java Program to subtract two large numbers using Linked Lists
Configuring a DataSource Programmatically in Spring Boot
Java Program to Generate Random Numbers Using Probability Distribution Function
Java Program to Find the Longest Path in a DAG
Spring Boot - Tomcat Port Number
Java Program to Implement TreeMap API
JUnit 5 for Kotlin Developers
Java Program to Implement Min Hash
Check if a String is a Palindrome in Java
Java Program to Give an Implementation of the Traditional Chinese Postman Problem