Answer:
The sun is the ultimate source of energy for all food chains. Through the process of photosynthesis, plants use light energy from the sun to make food energy. Energy flows, or is transferred through the system as one organism consumes another.
<h2>
Answer: irregular</h2>
According to Hubble galaxies are classified into elliptical, spiral and irregular.
It should be noted this classification is based only on the visual appearance of the galaxy, and does not take into account other aspects, such as the rate of star formation or the activity of the galactic nucleus.
The classification is as follows:
1. Elliptical galaxies: Their main characteristic is that the concentration of stars decreases from the nucleus, which is small and very bright, towards its edges. In addition, they contain a large population of old stars, usually little gas and dust, and some newly formed stars.
2. Spiral galaxies: They have the shape of flattened disks containing some old stars and also a large population of young stars, enough gas and dust, and molecular clouds that are the birthplace of the stars.
3. Irregular Galaxies: Galaxies that do not have well-defined structure and symmetry.
In this context, galaxy M82 does not match with the first two types of galaxies, because it has not a defined shape.
Therefore, M82 is an irregular galaxy.
Answer:
The gravitational potential energy between two particles, if the distance between them is halved, is multiplied by 4 (option c).
Explanation:
The gravitational force is the force of mutual attraction that two objects with mass experience.
The Law of Universal Gravitation enunciated by Newton says that every material particle attracts any other material particle with a force directly proportional to the product of their masses and inversely proportional to the square of the distance that separates them. Mathematically this is expressed as:

where m1 and m2 are the masses of the objects, r the distance between them and G a universal constant that receives the name of constant of gravitation.
If the distance between two particles is reduced by half, then, where F' is the new value of the gravitational force:




F'=4*F
<u><em>
The gravitational potential energy between two particles, if the distance between them is halved, is multiplied by 4 (option c).</em></u>
Odpowiedź:
0,049 m / s
Wyjaśnienie:
Biorąc pod uwagę, że:
Dystans biegu = 900m
Czas trwania = 205 minut
Długość przejścia = 300 m
Zajęty czas = 205 minut
Średnia prędkość :
(Przebieg + pokonany dystans) / całkowity czas
Średnia prędkość :
(900 m +. 300 m) / 205 + 205
1200 m / 410 minut
Minuty do sekund
1200 / (410 * 60)
1200/24600
= 0,0487804
= 0,049 m / s
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