Answer:
the answer is D
Step-by-step explanation:
Answer:
29
Step-by-step explanation:
Let x represent the length of DE. Then ...
AB = x
AD = AB -BD = x - 9
__
AC = x
AE = AC -CE = x - 8
And the Pythagorean theorem applied to triangle ADE tells us ...
x^2 = (x -9)^2 +(x -8)^2
0 = x^2 -34x +145 = (x -5)(x -29)
Solutions are the values of x that make a factor zero: 5 or 29.
The length of DE must be greater than 9, so the appropriate solution from the above equation is x = 29.
The length of DE is 29.
Answer: 7.937
Step-by-step explanation: Calculator...
Answer:
If u mean plymouth rock then the answer is
Lost at sea, they happened upon a piece of land that would become known as Cape Cod. After surveying the land, they set up camp not too far from Plymouth Rock. ... The 102 travellers aboard the Mayflower landed upon the shores of Plymouth in 1620. This rock still sits on those shores to commemorate the historic event.
Step-by-step explanation:
Ok so I'll demonstrate in programming language python.
import math
def circle():
r = float(input("Enter r: "))
a = math.pi * r ** 2
print("Area of circle with r = {0} is {1
}cm2".format(str(r), str(a))
circle()