1) Venn-diagram of-<br> AUBUC={a,b,c,d,e}U{d,e,f,g,h,i}U{a,e,i,o,u}<br>
Naddika [18.5K]
Answer:
AUBUC= { a,b,c,d,e,f,g,h,i,o,u}
38.82 if you add them all together they give you 95.25
180 is the answer. Hope you get it right! (:
f(0) means the function output when the input is x = 0. This is the same as saying the y value when x = 0.
f(x) = 3-2x
f(0) = 3-2(0)
f(0) = 3
The point (0,3) is on the graph. This is the y intercept which is where the graph crosses the y axis. The y intercept always occurs when x = 0.
So in other words, the special name for f(0) is the y intercept.
Answer:
clc%clears screen
clear all%clears history
close all%closes all files
p=250;
M=[];
for i=1:100000
re=0;
S=0;
while(S<=1)
S=S+rand;
re=re+100;
end
M(i)=re;
end
disp('Expected received money is');
mean(M)
disp('Since expcted is greater than what we pay. So, we will play')
Step-by-step explanation: