Answer:
People also ask
What type of soil has equal parts of sand silt and clay?
What soil horizon contains mostly clay silt and sand?
E Horizon - This eluviation (leaching) layer is light in color; this layer is beneath the A Horizon and above the B Horizon. It is made up mostly of sand and silt, having lost most of its minerals and clay as water drips through the soil (in the process of eluviation).
Answer:
Small points of colored light arranged in a grid, each is formed from three colored lights: red,green,and blue. (RGB), nothing is absorbed,nothing is reflected, just see pure colored lights.
Answer: 33.35 minutes
Explanation:
A(t) = A(o) *(.5)^[t/(t1/2)]....equ1
Where
A(t) = geiger count after time t = 100
A(o) = initial geiger count = 400
(t1/2) = the half life of decay
t = time between geiger count = 66.7 minutes
Sub into equ 1
100=400(.5)^[66.7/(t1/2)
Equ becomes
.25= (.5)^[66.7/(t1/2)]
Take log of both sides
Log 0.25 = [66.7/(t1/2)] * log 0.5
66.7/(t1/2) = 2
(t1/2) = (66.7/2 ) = 33.35 minutes
Answer:
The answer is c and the teacher helped me
Explanation:
i had help from the tescger and the assignment is done
Answer:
point_dist = math.sqrt((math.pow(x2 - x1, 2) + math.pow(y2 - y1, 2))
Explanation:
The distance formula is the difference of the x coordinates squared, plus the difference of the y coordinates squared, all square rooted. For the general case, it appears you simply need to change how you have written the code.
point_dist = math.sqrt((math.pow(x2 - x1, 2) + math.pow(y2 - y1, 2))
Note, by moving the 2 inside of the pow function, you have provided the second argument that it is requesting.
You were close with your initial attempt, you just had a parenthesis after x1 and y1 when you should not have.
Cheers.