You are viewing a single comment's thread. Return to all comments →
lambda_A,lambda_B =map(float,input().split()) E_X2_A = lambda_A + (lambda_A ** 2) e_cost_A = 160 + 40 * E_X2_A E_X2_B = lambda_B + (lambda_B ** 2) e_cost_B = 128 + 40 * E_X2_B print(round(e_cost_A,3)) print(round(e_cost_B,3))
Seems like cookies are disabled on this browser, please enable them to open this website
Day 5: Poisson Distribution II
You are viewing a single comment's thread. Return to all comments →