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

output

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 is

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

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

Students also viewed these Databases questions