The answer is = (x + 5y) (x + 7y)
Break the expression into two groups.
x^2 + 12xy + 35y^2
(x^2 + 5xy) (7xy + 35^2)
Factor out x from x^2 + 5xy: x(x + 5y)
Factor out 7y from 7xy + 35y^2: 7y(x + 5y)
=x(x + 5y) + 7y(x + 5y)
Next, factor out the common term (x+ 5y).
Answer = (x + 5y) (x + 7y)
Answer:
52 pounds
Step-by-step explanation:
add them together
37 + 15 = 52
Answer:
5
Step-by-step explanation:
they are equal to one another soo make an equation and solve it 2x-10 then divide that and get 5
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)).