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 Quick JUnit vs TestNG Comparison
Java Program to Perform Addition Operation Using Bitwise Operators
Spring Cloud Connectors and Heroku
Java Program to Implement Quick Hull Algorithm to Find Convex Hull
Using the Not Operator in If Conditions in Java
Java Program to Use Dynamic Programming to Solve Approximate String Matching
Java Program to Implement the Schonhage-Strassen Algorithm for Multiplication of Two Numbers
Toán tử instanceof trong java
Guide to the Java Queue Interface
Java Program to Implement Euler Circuit Problem
New Features in Java 9
Java Program to Evaluate an Expression using Stacks
Using JWT with Spring Security OAuth (legacy stack)
Mapping Nested Values with Jackson
Java Program to Implement Hash Tables chaining with Singly Linked Lists
Jackson vs Gson
Hướng dẫn sử dụng Java Reflection
Introduction to Spring Method Security
Removing all Nulls from a List in Java
Java Program to Implement ConcurrentHashMap API
JUnit 5 @Test Annotation
Java Program to Implement Hash Trie
Introduction to Spring Cloud CLI
Java Program to Implement Suffix Array
@Lookup Annotation in Spring
Java Program to Implement Branch and Bound Method to Perform a Combinatorial Search
Java Program to find the maximum subarray sum O(n^2) time(naive method)
Finding the Differences Between Two Lists in Java
Java Program to Sort an Array of 10 Elements Using Heap Sort Algorithm
Compare Two JSON Objects with Jackson
Spring Security 5 – OAuth2 Login
Java Map With Case-Insensitive Keys