Answer:
The voter-base after 3 elections is:
0.392565, 0.400734, 0.109855, 0.096846
The voter-base after 6 elections is:
0.36168, 0.36294, 0.14176, 0.13362
The voter-base after 10 elections is:
0.35405, 0.34074, 0.15342, 0.15178
Step-by-step explanation:
This question is incomplete. I will proceed to give the complete question. Then I will add a screenshot of my code solution to this question. After which I will give the expected outputs.
Let's use the results of the 2012 presidential election as our x0. Looking up the popular vote totals, we find that our initial distribution vector should be (0.5106, 0.4720, 0.0075, 0.0099)T. Enter the matrix P and this vector x0 in MATLAB:
P = [ 0.8100 0.0800 0.1600 0.1000;
0.0900 0.8400 0.0500 0.0800;
0.0600 0.0400 0.7400 0.0400;
0.0400 0.0400 0.0500 0.7800];
x0 = [0.5106; 0.4720; 0.0075; 0.0099];
According to our model, what should the party distribution vector be after three, six and ten elections?
Please find the code solution in the images attached to this question.
The voter-base after 3 elections is therefore:
0.392565, 0.400734, 0.109855, 0.096846
The voter-base after 6 elections is therefore:
0.36168, 0.36294, 0.14176, 0.13362
The voter-base after 10 elections is therefore:
0.35405, 0.34074, 0.15342, 0.15178