Yes, the new coordinates would be:
R': (9,9)
P': (3,3)
Q': (9,3)
You would multiply all of the current coordinates by three (its scale factor of enlargement) to obtain these answers. Hope this helps!
ANSWER: x=12
EXPLANATION:
9+x/6=11
(54+x)/6=11 (finding common denominator)
x/6=11-54/6 (rearranging terms)
x/6=(66-54)/6 (finding common denominator so 6 gets cancelled from both the sides)
x=12
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)).
So for this problem you know that 15 is 1/4 of an hour so to get the amount of papers each individual could deliver by themselves in an hour you would multiply the amount they can deliver in 15 minutes by 4. Denny delivers 6 so multiplying that by 4 is 24. Next Brendan delivers 5 in 15 minutes so multiplying that by 4 you get 20. The final step is to add 20 and 24 to get the total amount of papers between the two of them that gets delivered in an hour. This will result in your answer of 44.