The figure consists of a rectangle and a circle.
first lets find the sides of the triangle
sides of the triangle are 4+4=8 and 3+1=4
therefore area of the rectangle is 8*4=32
now area of semicircle =πr^2/2 = π2^2/2=2π=6.3
we have to add the area of rectangle with the area of semicircle
this is because it the given figure no part of area of circle and rectangle are in common.
therefore total area of given figure = 32+6.3=38.3
Answer:
x = 1, y = 60
Step-by-step explanation:
Value of new-releases (x) = $20 each
Value of classic (y) = $8 each
Total budget = $500
Equation : 20x + 8y = 500
The librarian wants to purchase maximum DVDs. She can get more DVDs of classic movies for $8 as they are less costly.
Lets assume the librarian buys at least one new-release DVD.
x=1
20x + 8y = 500
8y + 20(1) = 500
y = 60
<em>Therefore, in a budget of $500, the librarian can purchase 60 classic movies and 1 new-release.</em>
!!
L•w=102
l=8w+6
8w+6•w=102
9w+6=102
102-6=96
9w=96
96/9= 10.67
Width is 10.67 yards
Answer:
This is your answer ☺️☺️☺️
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)).