Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

What is the proportion of Netflix subscribers to total customers after 6 months with the specified model and initial state? Save this quantity as the

What is the proportion of Netflix subscribers to total customers after 6 months with the specified model and initial state? Save this quantity as the variable netflix_subs6 in your Colab notebook. (This should be a value between 0 and 1.) You may use previously defined functions to solve this problem.
Previous functions:
def subscriber_vals(x_0, k):
P = np.array([[0.7,0.2],
[0.3,0.8]])
x = x_0
for _ in range(k):
x = np.dot(P, x)
return x

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