Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

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.

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.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Intelligent Databases Technologies And Applications

Authors: Zongmin Ma

1st Edition

1599041219, 978-1599041216

More Books

Students also viewed these Databases questions

Question

What are Electrophoresis?

Answered: 1 week ago