The simplest pure substances that cannot be broken down into any other substances are elements, such as gold (Au) or oxygen (O).
Answer:
a) > x<-c(1,2,3,4,5)
> y<-c(1.9,3.5,3.7,5.1,6)
> linearmodel<-lm(y~x)
And the output is given by:
> linearmodel
Call:
lm(formula = y ~ x)
Coefficients:
(Intercept) x
1.10 0.98
b) 
And if we compare this with the general model 
We see that the slope is m= 0.98 and the intercept b = 1.10
Explanation:
Part a
For this case we have the following data:
x: 1,2,3,4,5
y: 1.9,3.5,3.7,5.1, 6
For this case we can use the following R code:
> x<-c(1,2,3,4,5)
> y<-c(1.9,3.5,3.7,5.1,6)
> linearmodel<-lm(y~x)
And the output is given by:
> linearmodel
Call:
lm(formula = y ~ x)
Coefficients:
(Intercept) x
1.10 0.98
Part b
For this case we have the following trend equation given:

And if we compare this with the general model 
We see that the slope is m= 0.98 and the intercept b = 1.10
His model was also called the Planetary model
Answer:They stop because jet streams follow boundaries between hot and cold air.
Explanation:
Answer:
A radio telescope helped the astronomers discover the CMB.
Explanation:
- Penzias and Wilson while experimenting with a radio telescope in 1964, accidentally discovered the radiation that exists universally also known as the CMB.
- This was used to support the "Big Bang Theory" and not the "Steady State Theory"
- CMB is the faint cosmic radiation that fills up the universe. It provides important data for understanding early universe.
- This data tells us about the composition of the universe and its age which raises new questions about the universe.