Need to solve in matlab 3) In Detroit, Hertz Rent-A-Car has a fleet of about 2 0
ID: 2901893 • Letter: N
Question
Need to solve in matlab
3) In Detroit, Hertz Rent-A-Car has a fleet of about 2 000 cars. The patternof rental and return locations is given by the fractions in the matrix P, P 9.01.09; .01.90.01 09.09.91 or Cars rented from City Down- Metro Cars Returned Airport town Airport 0.9000 0.0100 0.0900 City Airport P 0.0100 0.9000 0.0100 Downtown 0.0900 0.0900 0.9000 Metro Airport a. A numerical vector with non-negative entries that add up to l is called a probability vector. A stochastic matrix is a square matrix whose columns are probability vectors. Using MATLAB, verify that P is a stochastic matrix. b. If P is a stochastic matrix, then a steady-state vector (or equilibrium vector for P is a probability vector q such that Pq q. What does the equation Pq q tells you about one of the eigenvalues of P and its associated eigenvector? c. Using Matlab, find the eigenvalues and eigenvectors of P. d. Using point c above, find v, an eigenvector of P corresponding to Pq q .If v is a probability vector, then v is the steady-state vector for P; if not, scale v by the sum of its entries to obtain the steady-state vector q- e. In our problem, the entries in the steady state vector q shows the fractions of the cars rented or ready to rent on a typical day from each of the locations (City Airport, Downtown, Metro Airport. On a typical day, about how many cars will be rented or ready to rent from the Downtown location? Explain any approximation you make.Explanation / Answer
sol)
a)
code for checking if it a stochastic matrix or not(copy the below code in the main window of matlab and press enter):
A=[0.9,0.01,0.09;0.01,0.9,0.01;0.09,0.09,0.9];
retur=1;
for i=1:1:3
pp=sum(A(:,i));
if pp ~= 1
retur=0;
end
end
retur
if retur =1 it is stohastic matrix if not its not.
b)
it tell us one of the eigen value is 1;
c)
code:
[V,D]=eig(A)
which gives:
eigen values(diagional values)
D =
1.0000 0 0
0 0.8100 0
0 0 0.8900
eigen vectors
V =
-0.6701 -0.7071 0.7071
-0.1399 0.0000 -0.7071
-0.7290 0.7071 -0.0000
d)
code:
pp=sum(V(:,1));
v=V(:,1)/pp;
v =
0.4354
0.0909
0.4737
e)
v =
0.4354
0.0909
0.4737
down town=2000*0.0909=181.8 = aprr (182)
therefore 182 cars will be rented or ready to rent the downtown
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.