Use  python code to solve  Job Mobility The lawyers at a law firm are either associates or partners. At the end of each year, 30% of the associates leave the firm, 20% are promoted to partner, and 50% remain associates. Also, 10% of the partners leave the firm at the end of each year. Assume that a lawyer who leaves the firm does not return. Draw the transition diagram for this Markov process. Label the states A, P, and L. Set up a stochastic matrix for the Markov process. Find the state of the matrix that changes no more.

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question

Use  python code to solve 

Job Mobility The lawyers at a law firm are either associates or partners. At the end of each year, 30% of the associates leave the firm, 20% are promoted to partner, and 50% remain associates. Also, 10% of the partners leave the firm at the end of each year. Assume that a lawyer who leaves the firm does not return.

  1. Draw the transition diagram for this Markov process. Label the states A, P, and L.

  2. Set up a stochastic matrix for the Markov process.

  3. Find the state of the matrix that changes no more.

  4. In the long run, what percent of the lawyers will be associates?

Expert Solution
Step 1: Algorithm:
  1. Define the three states: A (associate), P (partner), and L (left the firm).
  2. Define the stochastic matrix P as a 3x3 matrix with the following transition probabilities:
    P[1,1] = 0.5 (probability of remaining an associate)
    P[1,2] = 0.2 (probability of becoming a partner)
    P[1,3] = 0.3 (probability of leaving the firm)
    P[2,1] = 0.1 (probability of demotion to associate)
    P[2,2] = 0.9 (probability of remaining a partner)
    P[2,3] = 0.0 (probability of leaving the firm)
    P[3,1] = 0.0 (no transition from state L)
    P[3,2] = 0.0 (no transition from state L)
    P[3,3] = 1.0 (absorbing state - probability of staying in state L)
  3. Define the initial state vector x0 as a 3x1 vector with the initial probabilities of being in each state. For example, if initially 80% of lawyers are associates, 10% are partners, and 10% left the firm, then x0 would be [0.8, 0.1, 0.1].
  4. Multiply the initial state vector x0 by the stochastic matrix P to get the state vector after one year: x1 = x0 @ P.
  5. Repeat step 4 for as many years as you want to simulate.
  6. To find the state of the matrix that changes no more, use the matrix_power function in NumPy to raise the matrix P to a large power (e.g., 100) and multiply it by the initial state vector x0: x_stable = np.linalg.matrix_power(P, 100) @ x0.
  7. The stable state vector x_stable represents the long-run probabilities of being in each state. For example, the percentage of lawyers who will be associates in the long run is given by x_stable[0] * 100.
  8. Output the results.
steps

Step by step

Solved in 5 steps with 2 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY