Editing
Retrieval Practice
(section)
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!
== <span style="color: #FFFFFF;">Applying</span> == '''Modeling 'The Retrieval Strength' (Predicting memory based on Study vs. Test time):''' <syntaxhighlight lang="python"> def calculate_learning_value(reading_time, test_time): """ Shows that 1 minute of 'Testing' is worth 3 minutes of 'Reading'. """ reading_value = reading_time * 1.0 testing_value = test_time * 3.0 # The 'Testing Multiplier' total_value = reading_value + testing_value retention_estimate = (total_value / 100) * 100 # Percentage return { "Total Study Time": f"{reading_time + test_time} mins", "Effective Learning Units": round(total_value), "7-Day Retention": f"{min(round(retention_estimate), 100)}%" } # Student A: 60 mins reading, 0 mins testing print(f"Student A: {calculate_learning_value(60, 0)}") # Student B: 30 mins reading, 30 mins testing (Equal time) print(f"Student B: {calculate_learning_value(30, 30)}") </syntaxhighlight> ; Learning Landmarks : '''The 'Feynman' Technique''' β A famous form of retrieval: try to "Explain" a complex concept to a "6-year-old." If you can't, you haven't "Retrieved" it well enough yet. : '''Flashcards''' β The most popular tool for retrieval. The "Question" side forces the "Retrieval," and the "Answer" side provides the "Feedback." : '''Clickers in the Classroom''' β Teachers using small remotes to "Test" students every 15 minutes, ensuring they are "Retrieving" during the lecture. : '''Cornell Note-Taking''' β A system where you write "Questions" in the margin of your notes, which you then "Cover up" to test yourself later. </div> <div style="background-color: #8B4500; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;">
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)
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