The answers are intended to be super-perfect. They may not actually be that.
Full marks can be given for anything that looks reasonably complete.
During a solar day, the Earth-Sun line shifts eastward by about 1 degree due to the Earth's rotation around the Sun. This means that the Earth must rotate more than 360 degrees relative to the fixed stars to bring any point on Earth back to solar noon. So the solar day is longer than the rotational period relative to the fixed stars (i.e., the sidereal day).
To be quantitative:
R_sid*t=R_orb*t+360
where t is the solar day.
And so
t=360/(R_sid-R_orb)=t_sid/(1-t_sid/t_orb)=86400.0 s
where t_sid = 86164.1 s
and t_orb = 365.256363004*86400 s = 31558149.763545599 &cong π*10**7 s.
Fortran code:
print*
tsid=86164.1d0 ! Sidereal day
torb=365.256363004d0*86400.d0
tsol=tsid/(1.d0-tsid/torb)
print*,'torb,tsol'
print*,torb,tsol
! 31558149.763545599 86400.000340327417
So we get the right answer.
We can also see that the relative difference between the two days is of order t_sid/t_orb ≅ 1/365.
The diagram you will have to imagine.
eastward by about 1 degree per day.
You can easily estimate them to tell someone else where for look for example for astronomical object.
Nowadays, there is lots of software will instantly give you the horizontal coordinates that it computes from your time and location, and the stored equatorial coordinates.
These question are hard to answer concisely. It actually takes working them over and over again to get really good answers. It's good for the students to try. One can mark generously.
Obviously this question can be answered in many different ways. Since it is supposed to be the short answer, it can't be complete---without remarkable compression.
Las Vegas, Nevada 36 deg, 10.5' = 36.175 deg.
---------------------------------------------------------------------------------------------------------------
Table of Solstice and Equinox Data
---------------------------------------------------------------------------------------------------------------
Sun Position Fiducial Date RA DEC Altitude of the Sun in Las Vegas
(hr) (degrees) Solar Noon
---------------------------------------------------------------------------------------------------------------
vernal equinox Mar21 0 0 53.8
summer solstice Jun21 6 23.4 77.2
fall equinox Sep21 12 0 53.8
winter solstice Dec21 18 -23.4 30.4
---------------------------------------------------------------------------------------------------------------
print*
p=25771.0d0 ! Julian years it seems http://en.wikipedia.org/wiki/Axial_precession#Values
rate1=360.d0/(p*365.25)
yearsid=365.256363004d0 ! http://en.wikipedia.org/wiki/Year#Sidereal.2C_tropical.2C_and_anomalistic_years
yearsol=365.24219d0
rate2=360.d0/yearsid
yearsolc=360.d0/(rate1+rate2)
dela=rate1*yearsolc
print*,'rate1,rate2,yearsolc,yearsol,dela'
print*,rate1,rate2,yearsolc,yearsol,dela
! 3.82455583162297325E-005 0.98560911311504673 365.24219015261588 365.24218999999999 1.39688914830293394E-002
The period is called the solar or tropical year.
The equatorial coordinate system is tied to the direction of the Earth's axis. This makes it very convenient for locating objects from the Earth as it rotates. But it means that the equatorial coordinates of all astronomical objects beyond the Solar System change as time passes since the whole equatorial coordinate system grid of equatorial coordinates shifts with the axial precession of the Earth and also the change in the axial tilt angle of the Earth.
Another effect the Sun and astronomical objects beyond the Solar System have physical motions through space. For remote objects, these motions have negligible effect on their equatorial coordinates for very long periods. However, for nearer objects the effect is not negligible and the equatorial coordinates of these objects must be updated for that reason.