The Principle of Linear Impulse and Momentum states that the initial linear momentum of an object plus the total linear impulse applied equals its final linear momentum.

For a constant net force (), the simplifies to:

centre
As seen above, the impulse due to weight force is considered negligible and isn’t factored into our equation.

Impulse and Momentum

Momentum is the product of an object’s mass and velocity:

Impulse is the measure of how much a force changes an object’s momentum over a specific period of time.

If is constant, than impulse is simplified to:

If there is no meaningful external impulses, then momentum is conserved.


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);
    }
}