If you, for example, poured it onto a wide cup with a volume equal to the total volume of the sand particles, the sand would not spread out to fill the container but would bunch up together in the middle.
Answer:
The height will be 4 times.
Explanation:
Given that,
The speed at the bottom of the hill doubled.
We need to calculate the height
Using conservation of energy




Therefore,

Here, m and g are constant
Hence, The height will be 4 times.
Answer:
i'm not sure if you are asking as a personal question or a book question so i'm taking it personal.
Explanation:
I was doing a simple task that was handed to me to test my responsibility and I agreed (knowing i am responsible :3). my first thought was "man , this is easy!" but then i started seeing the other kids slaking off and quiting their tasks. I thought that was against the rules, but then i saw my bff doing it too and i thought "this should be ok then!" so i did the same. other kids where still doing it. the teacher came, saw the ones still working and smiled... but when the teacher looked at the ones slaking off omg... his face was like * im gonna kill yall* we took one big gulp and whined. the teacher awarded the ones who completed the task... the others , we had to do our original task but doubled... for 3 weeks!!! it was awful!!!
I WOULD NEVER DO THAT AGAIN!!!
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