Spaced repetition is a powerful technique that will help you memorize information in much less time than it would take otherwise. The idea of spaced repetition is to space out your repetitions – or review sessions – so that you are not trying to cram all the knowledge into your brain at once.1
The distribution of study days will always look something like this:
|-------------------------------------|
Below is the raw Javascript line that calculates how much time should go between each day:
const mult = [2.175, 2, 1.825, 1.625, 1.45]
Math.floor( Math.pow( mult[topicDifficulty[i].value - 1], p
))
While this looks confusing, it can be broken down into an easier to understand math equation. Assume first level of difficulty (1), as well as calculating the first day you should study (p=1).
\(Floor( 2.175^1 )\)
This equation is telling us that if the topic is easy, we should start studying about 2 days after the first day we learn the topic.
Keep in mind that the harder a topic is, the sooner you will begin
to review the topic. These values are shown above in the
const mult
, and are as follows: 2.175, 2, 1.825,
1.625, and 1.45.
When first starting to study, these values won't change too much; you will begin to review 1-2 days after you learn the topic. However, once you get closer to the test date, these days will become farther and farther apart.
Below is an example demonstrating the difference in days between the fifth study session when calculating an easy topic versus a super hard topic:
Easy Topic: \(Floor( 2.175^5 ) = 48\) Days from start date
Hard Topic: \(Floor( 1.45^5 ) = 6\) Days from start date
Keep in mind that with both of these equations, you are only studying 5 times, the only difference being the amount of time between each study session.
From here, a list of study dates will come up, along with a calendar
to help visualize the study plan. If there is a superscript on a date
(and it's highlighted), you can hover over it to see a list of the
study topics for that day. The number represents the number of topics
to study on that day.
At the bottom of the page, you can also
export these dates to your calendar, or start the process over.
From here, a list of study dates will come up, along with a calendar to help visualize the study plan. If there is a superscript on a date (and it's highlighted), you can hover over it to see a list of the study topics for that day. The number
represents the number of topics to study on that day.
At the bottom of the page, you can also export these dates to your calendar, or start the process over.