summaryrefslogtreecommitdiff
path: root/291/CH4/EX4.2b/eg4_2b.sce
blob: cddf2953859572dc77ed1c2f7986737a9a2f3127 (plain)
1
2
3
4
5
6

integral = integrate('(4*x)-(2*x*x)' , 'x', 0, 2);
C = 1/integral;
disp(C, "The value of C is")
integral_new = integrate('C*((4*x)-(2*x*x))' , 'x', 0, 1);
disp(1-integral_new , "Probability that X is greater than 1 is")