Answer:
The answer to your question is 1 = 69°
Step-by-step explanation:
To solve this problem remember that the sum of the internal angles in a triangle equals 180°.
Let the third angle of the triangle be x.
39° + 30° + x = 180
Solve for x
x = 180 - 39 - 30
x = 111°
Angle x and angle 1 are supplementary so their sum equals 180°.
111° + 1 = 180
1 = 180 - 111
1 = 69°
there are no statements to see of they are correct
The transitive property is a chain rule for the variables a, b and c.
It states that if a is equal to b and b is equal to c then a is equal to c.
If a = b and b = c then a = c.
Answer:
3/64
Step-by-step explanation:
Multiply straight across the numerators and then denominators
3 1 3
------- X ---------- = ---------
8 8 64
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)).