npr08_07 Data are in X, Y, P jcalc Enter JOINT PROBABILITIES (as on the plane) P Enter row matrix of VALUES of X X Enter row matrix of VALUES of Y Y Use array operations on matrices X, Y, PX, PY, t, u...npr08_07 Data are in X, Y, P jcalc Enter JOINT PROBABILITIES (as on the plane) P Enter row matrix of VALUES of X X Enter row matrix of VALUES of Y Y Use array operations on matrices X, Y, PX, PY, t, u, and P M1 = t.^2 - 3*t <=0; P1 = total(M1.*P) P1 = 0.4500 M2 = t.^3 - 3*abs(u) < 3; P2 = total(M2.*P) P2 = 0.7876 G = 3*t.^2 + 2*t.*u - u.^2; % Determine g(X,Y) [Z,PZ] = csort(G,P); % Obtain dbn for Z = g(X,Y) ddbn % Call for plotting m-procedure Enter row matrix of VALUES Z Enter row matrix of PR…