Answer:
P(A) = 86/100
P(B) = 79/100
P(A') = 14/100
P(A U B) = 95/100
P(A' U B) = 84/100
Step-by-step explanation:
i. P(A) = number of disks with high shock resistance/total number of disks
= (70+16)/100
= 86/100
ii. P(B) = number of disks with high scratch resistance/total number of disks
= (70+9)/100
= 79/100
iii. P(A') = number of disks without high shock resistance/total number of disks
= (100-86)/100
= 14/100
iv. P(AUB) = number of disks with high shock resistance or high scratch resistance/total number of disks
= (70+9+16)/100
= 95/100
v. P(A'UB) = number of disks without high shock resistance or with high scratch resistance/total number of disks
= (5+9+70)/100
= 84/100
94 MINUS 68 EQUAL 26 DOLLARS MIN HAS
Slope intercept = y=mx+b
m is the slope
b is the y int
point slope =y2-y1=m(x1-x2)
Answer:
age<-c(20,30,40)
names(age)<-c ("ELI", "ALI", "JON")age
## ELI ALI JON
## 20 30 40
Step-by-step explanation:
The above given vector named age consists of three elements. Each element consists of ages of three people, ELI, ALI and JON, such that 20 corresponds to ELI, 30 to ALI and 40 to JON.