Relative motion is the calculation of the movement of an object, relative to another observer or point of reference. Likewise, we can also find the relative velocity and acceleration between two points.

Position/velocity/acceleration of point relative to point is written as:

The of point relative to is equal and opposite to the of point relative to point :


Relative Position

  • The absolute positions of two particles A and B with respect to the fixed -reference frame are given by and
  • The position of B relative to A is represented by:

Relative Velocity

The velocity of B relative to A is represented by:

Relative Acceleration

  • The acceleration of B relative to A is represented by:

const current = dv.current();
 
if (current && current.file.tags.some(t => t.toLowerCase() === "#topic")) {
    const inlinks = current.file.inlinks;
 
    // Split backlinks: general notes vs. lecture notes
    const lectureLinks = inlinks.where(l => l.path.includes("/Lecture Notes/"));
    const otherLinks = inlinks.where(l => !l.path.includes("/Lecture Notes/"));
 
    if (otherLinks.length > 0) {
        dv.header(4, "Links To This Page");
        dv.list(otherLinks);
    }
 
    if (lectureLinks.length > 0) {
        dv.header(4, "Referenced In Lecture Notes");
        dv.list(lectureLinks);
    }
}