Probability that first student prefers mechanical pen = 0.30
P(first student does not and second student does) = 0.70 * 0.3 = 0.21)
P( selecting 2 or fweer) = 0.30+ 0.21) = 0.51 or 51%
Answer:
Here's what I get.
Step-by-step explanation:
9. (6, -8)
The reference angle θ is in the fourth quadrant.
∆AOB is a right triangle.
OB² = OA² + AB² = 6² + (-8)² = 36 + 64 = 100
OB = √100 = 10

10. cot θ = -(√3)/2
The reference angle θ is in the second quadrant.
∆AOB is a right triangle.
OB² = OA² + AB² = (-√3)² + (2)² = 3 + 4 = 7
OB = √7

I think 7a^3b^6, but im not sure so im sorry if it is wrong
Answer:
2
Step-by-step explanation:
Assuming a d-heap means the order of the tree representing the heap is d.
Most of the computer applications use binary trees, so they are 2-heaps.
A heap is a complete tree where each level is filled (complete) except the last one (leaves) which may or may not be filled.
The height of the heap is the number of levels. Hence the height of a binary tree is Ceiling(log_2(n)), for example, for 48 elements, log_2(48)=5.58.
Ceiling(5.58)=6. Thus a binary tree of 6 levels contains from 2^5+1=33 to 2^6=64 elements, and 48 is one of the possibilities. So the height of a binary-heap with 48 elements is 6.
Similarly, for a d-heap, the height is ceiling(log_d(n)).