Question

In: Computer Science

Write a program that prompts the user to enter a 3 x 3 matrix of double...

Write a program that prompts the user to enter a 3 x 3 matrix of double values and tests whether it is a positive Markov matrix. There will be two methods which will be called from the main method: public static double [] [] createArray() 1. Creates a 3 by 3 two dimensional array of doubles 2. Prompts the user for values as shown in the sample run 3. Stores the numbers in the array in the order entered 4. Returns the array to the main method public boolean isMarkovMatrix(double [][] matrix) 1. Returns false if any value in the array is negative 2. Prints the sum of each column in the array 3. Returns false if any the sum of any of the columns is not equal to 1.0 4. Otherwise, it returns true. Sample Program running: Enter a 3 x 3 matrix by row 0.15 0.875 0.375 0.55 0.005 0.225 0.30 0.12 0.4 The sum of the columns 1.0 1.0 1.0 It is a Markov matrix Enter a 3 x 3 matrix by row -0.2 0.875 0.375 0.75 0.005 0.225 0.45 0.12 0.4 The sum of the columns 1.0 1.0 1.0 It is not a Markov matrix

Solutions

Expert Solution

Code:

import java.util.Scanner;
public class MarkovMatrix
{
public static double [] [] createArray()
   {
       Scanner input=new Scanner(System.in); //creating scanner class
       double[][] input_array=new double[3][3]; //input_array declaration
       for (int i=0;i<3;i++)
           {
           for (int j=0;j<3;j++)
               {
                   input_array[i][j]=input.nextDouble(); //taking input_values from user
               }
           }
       return input_array; //returning input_Array
   }
public static boolean isMarkovMatrix(double [][] matrix) //ismarkovmatrix function which accepts input matrix
   {
   int isNegative=0,isSumNegative=0,k=0; //isnegative and issumnegative variables to check any column or sum is negative
   double[] sum=new double[3]; //sum array to store the sum of colums
   for (int i=0;i<3;i++) //iterate the loop for every row
       {
       for (int j=0;j<3;j++) //iterate loop for every column
           {
               sum[k]=sum[k]+matrix[j][i]; //add each element in the column to sum value
               if ((matrix[j][i])<0.0) //check any element is negative then make isNegative=1
                   isNegative=1;
           }
       k++; //increment k value
       }
   System.out.println("The sum of column values are : "); //print the sum of colums
   for (int i=0;i<3;i++)
       {
       if (sum[i]<0.0) //check if the sum value is negative then make isSumNegative=1
           isSumNegative=1;
       System.out.print (sum[i] + " " );
       }
       if (isNegative==1 || isSumNegative==1) //if element is negative or sum is negative return fals
           return false;
       else //else return true
           return true;
   }
public static void main(String args[])
   {
   System.out.println("Enter the 3x3 Matrix:");
   double [][] input_Array=createArray(); //calling createArray function and storing array that was returned by function
   boolean result=isMarkovMatrix(input_Array)   ; .//calling isMarkovMatrix() function by passing input_array and storing result
   if (result==true) //if result true print markov matrix else print not markov matrix
       System.out.println("\nThe given matrix is Markov Matrix");
   else
       System.out.println("\nThe given matrix is Not Markov Matrix");
   }
}

Code and Output Screenshots:

Note : if you have any queries please post a comment thanks a lot..always available to help you..


Related Solutions

Write a program that prompts the user to enter a 3 x 3 matrix of double...
Write a program that prompts the user to enter a 3 x 3 matrix of double values and tests whether it is a positive Markov matrix. There will be two methods which will be called from the main method: public static double [] [] createArray() 1. Creates a 3 by 3 two dimensional array of doubles 2. Prompts the user for values as shown in the sample run 3. Stores the numbers in the array in the order entered 4....
Write a program that prompts the user to enter a 3 x 3 matrix of double...
Write a program that prompts the user to enter a 3 x 3 matrix of double values and tests whether it is a positive Markov matrix. There will be two methods which will be called from the main method: public static double [] [] createArray() 1. Creates a 3 by 3 two dimensional array of doubles 2. Prompts the user for values as shown in the sample run 3. Stores the numbers in the array in the order entered 4....
Write a program that prompts the user to enter a 3 x 3 matrix of double...
Write a program that prompts the user to enter a 3 x 3 matrix of double values and tests whether it is a positive Markov matrix. There will be two methods which will be called from the main method: public static double [] [] createArray() 1. Creates a 3 by 3 two dimensional array of doubles 2. Prompts the user for values as shown in the sample run 3. Stores the numbers in the array in the order entered 4....
JAVA Write a program that prompts the user to enter a matrix number of rows and...
JAVA Write a program that prompts the user to enter a matrix number of rows and number of columns. In main method create 2D matrix based on the number of rows and columns input by the user; randomly fills the matrix with 0s and 1s and prints it. Create method sumColumns that takes only the matrix you created in main method and find the sum of each column with even index and prints it. Do not use global variables. Here...
JAVA posted multiple times Write a program that prompts the user to enter a matrix number...
JAVA posted multiple times Write a program that prompts the user to enter a matrix number of rows and number of columns. In main method create 2D matrix based on the number of rows and columns input by the user; randomly fills the matrix with 0s and 1s and prints it. Create method sumColumns that takes only the matrix you created in main method and find the sum of each column with even index and prints it. Do not use...
JAVA posted multiple times Write a program that prompts the user to enter a matrix number...
JAVA posted multiple times Write a program that prompts the user to enter a matrix number of rows and number of columns. In main method create 2D matrix based on the number of rows and columns input by the user; randomly fills the matrix with 0s and 1s and prints it. Create method sumColumns that takes only the matrix you created in main method and find the sum of each column with even index and prints it. Do not use...
Part 1 Write a program that prompts the user to enter three sets of five double...
Part 1 Write a program that prompts the user to enter three sets of five double numbers each. These numbers represent the five grades that each of three students has received. After prompting for the grades, the program: stores the data in a previously defined 3◊5 double array computes the average of each set of 5 grades after acquiring the grades for that one student determines the maximum and minimum values of each set of 5 grades acquiring the grades...
Write a C program that prompts the user to enter three sets of five double numbers...
Write a C program that prompts the user to enter three sets of five double numbers each. (You may assume the user responds correctly and doesn’t enter non-numeric data.) The program should accomplish all of the following: a. Store the information in a 3×5 array. b. Compute the average of each set of five values. c. Compute the average of all the values. d. Determine the largest value of the 15 values. e. Report the results. Each major task should...
Write a program that prompts the user to enter three sets of five double numbers each....
Write a program that prompts the user to enter three sets of five double numbers each. (You may assume the user responds correctly and doesn’t enter non-numeric data.) The program should accomplish all of the following: a. Store the information in a 3×5 array. b. Compute the average of each set of five values. c. Compute the average of all the values. d. Determine the largest value of the 15 values. e. Report the results. Each major task should be...
Exercise 3 – Strings Using a function Write a program that prompts the user to enter...
Exercise 3 – Strings Using a function Write a program that prompts the user to enter two inputs: some text and a word. The program outputs the starting indices of all occurrences of the word in the text. If the word is not found, the program should output “not found”. Example1: Input1: my dog and myself are going to my friend Input2: my Output: 0 11 31 Example 2: Input1: Programming is fun Input 2: my Output: not found
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT