12 men : 8 hours : 10 days
// Find if every man works 1 hour
12 x 8 men : 1 hour : 10 days
96 men : 1 hour : 10 days
//Find if every man works 15 hours
96 ÷ 15 men : 15 hours : 10 days
6.4 men : 15 hours : 10 days
//Find if every man works 1 day
6.4 x 10 men : 15 hours : 1 day
64 men : 15 hours : 1 day
//Find if every man works 8 days
64 ÷ 8 men : 15 hours : 8 days
8 men : 15 hours : 8 days
Answer: 8 men is needed
Answer:
2/8, 3/12, 4/24, 5/20, 6/24, 7/28, 8/32, 9/36, 10/40, etc.
Step-by-step explanation:
The answer is -4 final answer
The correct product should have been:
<span>(–4x + 9)2 = </span>(-4x)2 + 2(-4x)(9) + 9^2 = 16x6 - 72x +81
The result is a trinomial and not a binomial nor a difference of two squares.
So, the answer is:
C = Kylie did not understand that this is a perfect square trinomial, and she did not determine the product correctly.
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)).