We are given a transition matrix `T=([.6,.05,.1,0],[.15,.85,.1,.09],[.1,.02,.75,.09],[.15,.08,.05,.82])` The numbers reading down the columns indicate the percentage of customers "switching" to electric, natural gas, oil, and solar power (respectively). For instance, in row 3, column 2, we have .02; this means that 2% of the customers will switch from oil to natural gas. In row three, column three, we have .75, which means that 75% of customers using oil will remain using oil.
We are given an initial vector: `([.2],[.35],[.4],[.05])` which indicates that currently 20% of homes use electric, 35% use natural gas, 40% use oil, and 5% use solar power for heat.
We want to find the steady state vector to determine what percentage of homes will use solar power if the trends were to continue.
One method is to compute the steady state vector x: Tx=x.
Then Tx-x=0 and (T-I)x=0. (I is the 4x4 identity matrix.)
`T-I=([-.4,.05,.1,0],[.15,-.15,.1,.09],[.1,.02,-.25,.09],[.15,.08,.05,-.18])` We want T-I=0 so we form the augmented matrix (T-I|0) and put it in reduced row echelon form using basic matrix manipulations.
`([1,0,0,-621"/"2005],[0,1,0,-2610"/"2005],[0,0,1,-1179"/"2005],[0,0,0,0])` `x_4` is free: choose `x_4=2005`
Thus we form a basis vector `([621],[2610],[1179],[2005])` . The sum of the entries is 6415 so we can form a probability vector by dividing each entry by 6415.
`([621"/?6415],[522"/"1283],[1179"/"6415],[401"/"1283])~~([.097],[.407],[.184],[.313])`
This is the steady state vector—this gives the percentages of homes that will ultimately use each type of energy. We see that about 31.3% will use solar energy.
With a calculator we could approximate this by taking large enough powers of the transition matrix times the initial vector (any vector whose entries sum to one would work). `T^25v` with v the initial vector is accurate to 4 decimal places.
See eNotes Ad-Free
Start your 48-hour free trial to get access to more than 30,000 additional guides and more than 350,000 Homework Help questions answered by our experts.
Already a member? Log in here.
Further Reading