You need to find out how many pints are in 2,4,6,8 quarts. by the way 1 quart equals 2 pints. so to start you off. 2 quarts would be 4 pints and so on
Draw a cartesian plane, create a graph with the equation x = y^2 - 2
then substitute numbers into the equation so that it is true, to find points on the graph, e.g. substitute y with 1, you get
x = 1^2 - 2
x = 1 - 2 = -1, so when y = 1, x = -1, this point is (-1, 1)
for the next substitute y with 2,
x = 2^2 - 2
x = 4 - 2 = 2, the point is (2, 2)
you might want to try negative values of y
y = -1, x = (-1)^2 - 2
x = -1 the point is (-1,-1)
then plot the points on the graph
Answer:
613 meters
Step-by-step explanation:
1)
cos(50 degrees)=324/x
x*cos(50 degrees)=324
x=324/cos(50 degrees)
x=around 504.1
2)
cos(35 degrees)=324/x
x*cos(35 degrees)=324
x=324/cos(35 degrees)
x=around 395.5
now lets find the distance in between the two people:
Distance from Shively to the tower
tan(50 degrees)=x/324
x=324*tan(50 degrees)
x= around 386.1
Distance from Sparzak to the tower
tan(35 degrees)=x/324
x=324*tan(35 degrees)
x=around 226.9
total distance=386.1+226.9=613 meters
Answer:
<h2>x > 3+y</h2>
Step-by-step explanation:

Assuming we need to find i such that
1 ≤ i ≤ n and t[i]=i.
If we need to find only the first occurrence, we can do:
for i:1 to n {
if t[i]=i then return(i)
}
If exhaustive search is required, then put the results (values of i) in an array or a linked list, return the number of values found, and the array (or linked list).