Answer:
1/2
Step-by-step explanation:
Given:
sinx=-1/2
cosy=√3/2
finding x
x=sin^-1(-1/2)
x=-π/6
x=-30°
finding y
cosy=√3/2
y=cos^-1(√3/2)
y=π/6
y=30°
Now finding cos(x-y)
cos(-π/6-π/6)
=cos(-π/3)
=1/2!
So there are 1.837 acres in 80,000 square feet, but if you need to simplified answer its 1.800 or 1.840
Answer:
The solutions are:
x=2
x=−5
Explanation:
2x2+3x−10=0
hope this helps (:
Step-by-step explanation:
Total area of the rectangular land = 2^15 sq. miles
= 32768 sq. miles
total area of the pieces being sold = 8^3 sq. miles
= 512 sq. miles
now total no. of pieces = total area of the land / the area of samaller land that's being sold
= 32768 / 512
= 64
so the actual number of pieces is 64
The program is an illustration of loops
<h3>What are loops?</h3>
Loops are program statements that are used to perform repetition
<h3>The main program</h3>
The program written in Python, where comments are used to explain each line is as follows:
#This initializes sum to 0
summ = 0
#This gets input for the first number
num = int(input())
#This is repeated while num is not -1
while num!= -1:
#This calculates the sum
summ+=num
#This gets input for the num
num = int(input())
#This prints the sum
print(summ)
Read more about loops at:
brainly.com/question/16397886