Exercise 1: Why Incremental Needs Five Pieces and Differential Needs Two — Possible Solution ==================================================================== WHAT EACH SCHEME'S DAILY JOB ACTUALLY CONTAINS ------------------------------ Per this chapter's table, an incremental job contains "only what changed since the previous day's job," while a differential job contains "everything changed since Sunday's full (cumulative)." That single difference in what gets captured each day is what drives the entire difference in restore complexity. WHY THE INCREMENTAL CHAIN NEEDS EVERY LINK ------------------------------ Because each incremental only describes the delta from the day immediately before it, no single incremental file contains a complete picture of anything on its own - Tuesday's incremental only makes sense as "apply this on top of whatever Monday's restore already produced." To reconstruct Thursday's state, every day's delta between Sunday's full and Thursday has to be applied in sequence: the full, then Monday, then Tuesday, then Wednesday, then Thursday - five pieces total, because each one only describes one day's worth of change relative to the day before. WHY THE DIFFERENTIAL SCHEME ONLY NEEDS TWO ------------------------------ Because each differential is measured against the same fixed reference point (Sunday's full), Thursday's differential already contains the complete set of everything that changed across Monday through Thursday, cumulatively, in one file. There's no need to also apply Monday's, Tuesday's, or Wednesday's differentials - Thursday's own differential already includes everything they would have added. That's why only the full backup plus that single differential are needed, regardless of which day of the week is being restored. WHY THIS ISN'T ARBITRARY - IT FOLLOWS DIRECTLY FROM THE DEFINITION ------------------------------ The five-vs-two difference isn't a separate fact to memorize - it's a direct mathematical consequence of "measured against yesterday" (incremental) versus "measured against the last full backup" (differential). Once the definition is understood, the restore complexity for either scheme can be derived rather than memorized. WHY THIS WORKS AS AN ANSWER ------------------------------ It restates what each scheme's daily job actually captures, explains why the incremental scheme's day-relative deltas require applying every intermediate day, and explains why the differential scheme's fixed-reference-point deltas make every earlier differential redundant once a later one exists.