Editing
Spaced Repetition
Jump to navigation
Jump to search
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
<div style="background-color: #4B0082; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> {{BloomIntro}} Spaced Repetition is the "Cheat Code" for human memory—the technique of spacing out your study sessions over time to hack the brain's "Forgetting Curve." Instead of "Cramming" all night (which leads to fast forgetting), spaced repetition involves reviewing information at increasing intervals—1 day, 1 week, 1 month, 6 months. Every time you "Almost forget" and then successfully remember, the "Connection" in your brain becomes 10x stronger. From the "Leitner System" of physical flashcards to modern "SRS Algorithms" (like Anki), spaced repetition is the most efficient way to move information from your "Short-term" memory into "Permanent" mastery. It is the science of "Studying less, but remembering more." </div> __TOC__ <div style="background-color: #000080; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Remembering</span> == * '''Spaced Repetition''' — A learning technique that incorporates increasing intervals of time between subsequent review of previously learned material. * '''The Forgetting Curve''' — Hermann Ebbinghaus's discovery that humans forget ~50% of new information within 24 hours unless they review it. * '''SRS (Spaced Repetition System)''' — Software that uses an algorithm to schedule the perfect time for you to review a flashcard (just before you forget it). * '''Interval''' — The amount of time between two reviews of the same item. * '''Leitner System''' — A manual method using "Boxes" where cards move to the next box only if you get them right. * '''Consolidation''' — The process by which the brain turns "Fragile" memories into "Solid" ones during sleep and rest. * '''Active Recall''' — The process of "Retrieving" an answer from your own brain, which must happen at every spaced interval. * '''Review Burden''' — The number of items you have to review each day to maintain your memory. * '''Anki / SuperMemo''' — Famous software programs that pioneered computer-based spaced repetition. * '''Ease Factor''' — A setting in an SRS that determines how quickly the interval grows (based on how "Easy" the card is for you). </div> <div style="background-color: #006400; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Understanding</span> == Spaced repetition is understood through '''Decay''' and '''The Rebound'''. '''1. The Forgetting Curve (The Enemy)''': Memory is like "Wet Sand." * If you write a word in the sand and leave it, the "Waves" of time wash it away in minutes. * But if you "Rewrite" the word every time it starts to fade, eventually the sand "Hardens into stone." * Most students study in a "Straight line" (Cramming), so they lose 90% of what they learn. Spaced repetition turns the "Straight line" into a "Circle" that keeps coming back until it sticks. '''2. The "Desirable Difficulty" (The Hack)''': The "Secret" is in the timing. * If you review something "Too early" (while it's still fresh), your brain is "Lazy" and doesn't strengthen the connection. * If you review it "Too late," you have forgotten it and have to "Re-learn" it from scratch. * Spaced repetition aims for the "Sweet Spot"—when the information is "On the tip of your tongue." This "Struggle" tells the brain: "This is important! Build a stronger bridge!" '''3. Exponential Growth''': Memory strength grows "Exponentially," not "Linearly." * After 5-6 successful spaced reviews, an interval can jump from "1 Year" to "5 Years." * This means you can maintain a "Library of 10,000 facts" by only studying for 20 minutes a day. '''The 'Leitner' Box Method'''': Box 1 (Every day), Box 2 (Every 3 days), Box 3 (Every week). If you get a card right, it moves up. If you get it wrong, it goes **all the way back to Box 1**. This "Penalty" ensures that the hardest things stay in the "High-frequency" loop until they become easy. </div> <div style="background-color: #8B0000; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Applying</span> == '''Modeling 'The Forgetting Curve' (Predicting memory strength over time):''' <syntaxhighlight lang="python"> def predict_memory_strength(initial_strength, days_passed, review_count): """ Shows how reviews 'Reset' and 'Flatten' the curve. """ # Forgetting follows an exponential decay: S = e^(-t/R) # Each review increases 'R' (the 'Retrievability' or stability) retrievability = initial_strength * (2 ** review_count) current_strength = 100 * (0.8 ** (days_passed / retrievability)) return round(current_strength) # Case 1: 3 days after learning, 0 reviews. print(f"Strength (No Review): {predict_memory_strength(1, 3, 0)}%") # Case 2: 3 days after learning, 2 spaced reviews. print(f"Strength (With Reviews): {predict_memory_strength(1, 3, 2)}%") </syntaxhighlight> ; Learning Landmarks : '''Ebbinghaus’s Experiments (1885)''' → The first-ever scientific study of memory, where Ebbinghaus memorized "Nonsense Syllables" (like DAX or BOK) to see how fast he forgot them. : '''Pimsleur Language Learning''' → A famous audio-based method that uses "Spaced intervals" (5 seconds, 25 seconds, 2 minutes) to teach you a new language without writing anything down. : '''Medical School Anki Culture''' → Modern medical students use massive "Anki Decks" (like Zanki) to memorize the 20,000 facts needed to become a doctor, proving that SRS works for high-stakes learning. : '''The FSRS Algorithm''' → A new "Free Spaced Repetition Scheduler" based on advanced math that is 15% more efficient than the older "SM-2" algorithm used for 30 years. </div> <div style="background-color: #8B4500; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Analyzing</span> == {| class="wikitable" |+ Cramming vs. Spaced Repetition ! Feature !! Cramming (Massed Practice) !! Spaced Repetition (Distributed) |- | Short-term Result || High (You pass the test tomorrow) || High (You pass the test tomorrow) |- | Long-term Result || Very Low (You forget it in a week) || Very High (You remember it for years) |- | Efficiency || Low (Wasted hours re-learning) || High (Only study what you are about to forget) |- | Effort || Stressful / Boring || "Desirably Difficult" / Engaging |} '''The Concept of "Metamemory"''': Analyzing your own brain. Spaced repetition requires you to "Be honest" with yourself. When the card comes up, you must say "Was that Easy, Good, or Hard?". This "Self-evaluation" is a form of "Metacognition" that further strengthens the memory. </div> <div style="background-color: #483D8B; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Evaluating</span> == Evaluating spaced repetition: # '''The "Atomization" Problem''': Is it "Bad" to break knowledge into "Tiny facts" for flashcards? (Do you lose the "Big Picture" or the "Connection" between ideas?). # '''The "Review Hell"''': What happens when you "Stop" for a week and have 1,000 reviews waiting for you? (The "Motivation" killer). # '''Context''': Can you use spaced repetition for "Conceptual" learning (like Physics), or is it only for "Facts" (like Vocabulary)? # '''The "Quality" of the Card''': If you write a "Bad card" (too vague), does spaced repetition just help you "Remember garbage"? </div> <div style="background-color: #2F4F4F; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Creating</span> == Future Frontiers: # '''Neural-Integrated SRS''': A brain chip that "Monitors" the electric signal of a specific memory and "Pushes" a review notification to your glasses the exact millisecond the signal fades. # '''Passive Spaced Repetition''': Using "Smart Posters" or "Desktop Wallpapers" that "Change" based on what you need to review, so you learn while just living your life. # '''Dream-State Review''': Using "Sound pulses" during sleep to "Replay" your spaced repetition facts, strengthening them 5x faster than during the day. # '''AI Card-Generators''': An AI that "Reads a 500-page book" and "Instantly generates" a perfectly structured deck of 200 spaced repetition cards for you. [[Category:Psychology]] [[Category:Education]] [[Category:Science of Learning]] </div>
Summary:
Please note that all contributions to BloomWiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
BloomWiki:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Template used on this page:
Template:BloomIntro
(
edit
)
Navigation menu
Personal tools
Not logged in
Talk
Contributions
Create account
Log in
Namespaces
Page
Discussion
English
Views
Read
Edit
View history
More
Search
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Tools
What links here
Related changes
Special pages
Page information