![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
Assignment (Math application):
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.
An n x n matrix is a positive Markov matrix if the following is true:
o If each of the elements is positive
o The sum of the elements in each column is 1
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
Please note the following requirements:
Include a comment before each method explaining what the methods will do
All methods called from the main methods
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.
The program must work correctly for all values (not just the values in the sample
output).
![Check Mark](/static/check-mark.png)
Trending nowThis is a popular solution!
Step by stepSolved in 3 steps with 1 images
![Blurred answer](/static/blurred-answer.jpg)
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education
![Text book image](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
![Text book image](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
![Text book image](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
![Text book image](https://www.bartleby.com/isbn_cover_images/9780133976892/9780133976892_smallCoverImage.gif)
![Text book image](https://www.bartleby.com/isbn_cover_images/9781337627900/9781337627900_smallCoverImage.gif)
![Text book image](https://www.bartleby.com/isbn_cover_images/9780073373843/9780073373843_smallCoverImage.gif)