The Law of Conservation of Linear Momentum states that the total linear momentum of a closed, isolated system remains constant if no net external force acts on it.
The equation above is derived from the linear impulse-momentum equation when the sum of external impulses acting on a system of objects is zero.

This equation is typically applied when particles collide or interact.
Internal forces do not impact the conservation of momentum equation as they always exists in equal and opposite pairs.
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);
}
}