Talk through your coursework with someone who knows the material.
Waypoint Mentor is your AI study partner: a voice-and-text tutor, plus the study tools to go with it, tasks, flashcards, quizzes, and a grade tracker, all in one tab, so you never have to piece your study setup together from five different apps. It's built for the moment you're stuck on a problem set at midnight and just want to talk it through with someone who already knows what your class covered.
How it works
Talk it through
Open a voice or text session and explain what you're stuck on, like you would to a real tutor.
Grounded in your material
On Plus/Premium, it searches your own uploaded slides and notes instead of guessing at what your class covered.
See it, not just hear it
Worked steps, tables, and diagrams land on the whiteboard next to the chat, ready to reread or copy.
See it in action
See what the tutor actually gives you
Ten real topics students search every day. Keep scrolling to go through all of them.
Physics
High school ยท University
For steady, incompressible, and inviscid flow along a streamline, the energy per unit volume remains constant:
Breakdown of terms
- โ Static pressure of the fluid (units: Pa or )
- โ Dynamic pressure (kinetic energy component)
- โ Hydrostatic pressure (potential energy component)
Variables defined
- (rho) โ Fluid density ()
- โ Fluid velocity ()
- โ Acceleration due to gravity (approx )
- โ Height above a reference level (m)
Algebra
High school
For any equation in the form , the solutions are:
Worked example: solve
- , ,
- Discriminant:
- , so or
When to use it: any quadratic that doesn't factor cleanly. The discriminant also tells you how many real solutions exist before you finish solving.
Biology
High school AP ยท University
Eight-step cycle in the mitochondria that oxidizes acetyl-CoA, the entry point for the energy released by cellular respiration overall:
Net yield per turn
- NADH โ 3 produced, feeds the electron transport chain
- FADHโ โ 1 produced, same pathway
- ATP โ 1 produced directly via substrate-level phosphorylation
Chemistry
High school
Unbalanced:
Balance one element at a time
- Carbon: 3 C on the left needs 3 on the right
- Hydrogen: 8 H on the left needs 4 on the right
- Oxygen: count on the right first (), then fix the left
Balanced equation
Rule of thumb: balance carbon and hydrogen first, oxygen last. It's usually the one that needs a fraction before you clear it.
Economics
High school ยท University
A price ceiling is a legal maximum price set below the market equilibrium price.
What happens at that price
- Quantity demanded rises (it's cheaper, more people want it)
- Quantity supplied falls (producers earn less, so they supply less)
- The gap between the two is the shortage
Key idea: the shortage isn't a flaw in the market. It's the direct, predictable result of not letting price rise to clear it: the further below equilibrium the ceiling is set, the bigger the shortage.
Calculus
University ยท AP Calc
For a composite function :
Worked example: differentiate
- Outer function: , derivative
- Inner function: , derivative
- Combine:
How to spot it: if you can describe the function as "something happening to something else," you need the chain rule.
History
High school
The assassination of Archduke Franz Ferdinand triggered the war, but four longer-term forces made Europe ready to ignite:
- Militarism โ an arms race and glorification of military strength across major powers
- Alliances โ a web of defense treaties meant Austria-Hungary vs. Serbia became all of Europe
- Imperialism โ competition over colonies bred resentment between rival empires
- Nationalism โ ethnic pride and independence movements destabilized multi-ethnic empires
Why it matters: any one of these alone probably doesn't cause a world war. It's the combination that turned a regional assassination into a continental war within weeks.
Computer Science
University ยท AP CS
A recursive function calls itself on a smaller version of the same problem, until it hits a base case that stops the recursion.
function factorial(n):
if n == 0: return 1 # base case
return n * factorial(n-1) # recursive case
Tracing factorial(4)
- factorial(4) = 4 ร factorial(3)
- factorial(3) = 3 ร factorial(2)
- factorial(2) = 2 ร factorial(1)
- factorial(1) = 1 ร factorial(0)
- factorial(0) = 1 โ base case hit, now it unwinds: 1ร1ร2ร3ร4 = 24
The two things every recursive function needs: a base case that stops it, and a recursive case that makes real progress toward that base case.
Statistics
High school ยท University
For a data set: 2, 4, 4, 4, 5, 5, 7, 9
Steps
- Mean:
- Squared differences: 9, 1, 1, 1, 0, 0, 4, 16
- Average of those:
What it means: most values in this set sit within about 2 points of the mean (5). A small means tightly clustered data, a large one means spread out.
English
High school ยท University
Weak: "There are many themes in The Great Gatsby." (states a fact, takes no position)
Strong: "Fitzgerald uses Gatsby's parties to expose the emptiness beneath the wealth of the 1920s American elite." (arguable, specific, previews the evidence)
Three things every strong thesis needs
- Takes a position โ something a reasonable person could disagree with
- Is specific โ names the actual text/evidence, not just a vague topic
- Previews the argument โ hints at how you'll prove it, not just what you believe
Quick test: if your thesis could be the answer to "so what?", it's probably still too vague.
Keep scrolling โ
See what the tutor actually gives you
Ten real topics students search every day. Swipe or use the arrows.
Physics
High school ยท University
For steady, incompressible, and inviscid flow along a streamline, the energy per unit volume remains constant:
Breakdown of terms
- โ Static pressure of the fluid (units: Pa or )
- โ Dynamic pressure (kinetic energy component)
- โ Hydrostatic pressure (potential energy component)
Variables defined
- (rho) โ Fluid density ()
- โ Fluid velocity ()
- โ Acceleration due to gravity (approx )
- โ Height above a reference level (m)
Algebra
High school
For any equation in the form , the solutions are:
Worked example: solve
- , ,
- Discriminant:
- , so or
When to use it: any quadratic that doesn't factor cleanly. The discriminant also tells you how many real solutions exist before you finish solving.
Biology
High school AP ยท University
Eight-step cycle in the mitochondria that oxidizes acetyl-CoA, the entry point for the energy released by cellular respiration overall:
Net yield per turn
- NADH โ 3 produced, feeds the electron transport chain
- FADHโ โ 1 produced, same pathway
- ATP โ 1 produced directly via substrate-level phosphorylation
Chemistry
High school
Unbalanced:
Balance one element at a time
- Carbon: 3 C on the left needs 3 on the right
- Hydrogen: 8 H on the left needs 4 on the right
- Oxygen: count on the right first (), then fix the left
Balanced equation
Rule of thumb: balance carbon and hydrogen first, oxygen last. It's usually the one that needs a fraction before you clear it.
Economics
High school ยท University
A price ceiling is a legal maximum price set below the market equilibrium price.
What happens at that price
- Quantity demanded rises (it's cheaper, more people want it)
- Quantity supplied falls (producers earn less, so they supply less)
- The gap between the two is the shortage
Key idea: the shortage isn't a flaw in the market. It's the direct, predictable result of not letting price rise to clear it: the further below equilibrium the ceiling is set, the bigger the shortage.
Calculus
University ยท AP Calc
For a composite function :
Worked example: differentiate
- Outer function: , derivative
- Inner function: , derivative
- Combine:
How to spot it: if you can describe the function as "something happening to something else," you need the chain rule.
History
High school
The assassination of Archduke Franz Ferdinand triggered the war, but four longer-term forces made Europe ready to ignite:
- Militarism โ an arms race and glorification of military strength across major powers
- Alliances โ a web of defense treaties meant Austria-Hungary vs. Serbia became all of Europe
- Imperialism โ competition over colonies bred resentment between rival empires
- Nationalism โ ethnic pride and independence movements destabilized multi-ethnic empires
Why it matters: any one of these alone probably doesn't cause a world war. It's the combination that turned a regional assassination into a continental war within weeks.
Computer Science
University ยท AP CS
A recursive function calls itself on a smaller version of the same problem, until it hits a base case that stops the recursion.
function factorial(n):
if n == 0: return 1 # base case
return n * factorial(n-1) # recursive case
Tracing factorial(4)
- factorial(4) = 4 ร factorial(3)
- factorial(3) = 3 ร factorial(2)
- factorial(2) = 2 ร factorial(1)
- factorial(1) = 1 ร factorial(0)
- factorial(0) = 1 โ base case hit, now it unwinds: 1ร1ร2ร3ร4 = 24
The two things every recursive function needs: a base case that stops it, and a recursive case that makes real progress toward that base case.
Statistics
High school ยท University
For a data set: 2, 4, 4, 4, 5, 5, 7, 9
Steps
- Mean:
- Squared differences: 9, 1, 1, 1, 0, 0, 4, 16
- Average of those:
What it means: most values in this set sit within about 2 points of the mean (5). A small means tightly clustered data, a large one means spread out.
English
High school ยท University
Weak: "There are many themes in The Great Gatsby." (states a fact, takes no position)
Strong: "Fitzgerald uses Gatsby's parties to expose the emptiness beneath the wealth of the 1920s American elite." (arguable, specific, previews the evidence)
Three things every strong thesis needs
- Takes a position โ something a reasonable person could disagree with
- Is specific โ names the actual text/evidence, not just a vague topic
- Previews the argument โ hints at how you'll prove it, not just what you believe
Quick test: if your thesis could be the answer to "so what?", it's probably still too vague.
What early students are saying
Real feedback from beta testers, kept anonymous at their own request.
โ
My mate showed me this and it's literally saved my grades. The voice tutor explaining my own lecture slides back to me is amazing, and the live AI whiteboard makes the concepts so easy to follow visually.
โ
Where was this app my whole degree?! I upload my messy notes, talk to the voice AI, and it auto-generates flashcards straight from our chat. It could be better if we could customize the flashcard colors, but the spaced repetition itself is goated.
โ
Honestly the best study tool I've used for mechanical engineering. The text tutor just gets it. The whiteboard actually pushes out proper LaTeX equations and diagrams while we talk. The only thing that could be better is if the voice tutor had a 1.5x speed setting, but otherwise it's flawless. Helped me throughout the course so much.
โ
This is amazingly working for my math classes. The tutor walks me through problems with progressive hints on the whiteboard. Love that it saves all my assignment results in the grade tracker too!
โ
My friend recommended this and it actually works perfectly. I just upload my course PDFs and the voice AI finds the exact answers with citations. Sometimes the text scanner takes a few extra seconds on really messy handwritten notes, but it always gets it eventually.
โ
The text tutor is great, but getting session recaps automatically saved after I finish studying is the best feature. Makes reviewing my weak spots so much faster before a test.
โ
If you struggle to pay attention, you need this. The AI tutor tests me in 'quiz-me' mode and drops practice questions on the whiteboard. Could be slightly better if the Tasks tab synced directly to Google Calendar, but having everything in one app is still super handy.
โ
I love how organized everything is. I have my voice tutor, my deadlines in Tasks, and my writing tools all on one screen. The grammar checker completely saved my last essay.
โ
10/10 amazing. Used it heavily during a robotics project when I was stuck on the theory. The tutor adapts to my learning style, and I love having my long-term goals right next to my study notes. Keeps me super motivated.
โ
Talking to the voice tutor is like studying with a smart friend who never gets annoyed. Uploading my lecture slides and having it generate a custom study guide is just incredible.
โ
This app is great for tough subjects. The tutor puts actual formulas and diagrams on the whiteboard while we chat. I wish I could export the whiteboard straight to a PDF (I just screenshot it for now), but it makes complex stuff so much easier to visualize.
โ
I use the voice tutor every single day. The way it grounds answers in my uploaded course material means I know the info is actually correct. Super reliable and easy to use.
โ
My mate showed me this app and I'm honestly so impressed. The AI text tutor plus the spaced-repetition flashcards completely changed how I memorize things. The Plus plan limits on file uploads could be a bit higher for massive textbooks, but I just split my PDFs in half and it works fine.
โ
The fact that the voice tutor remembers my past sessions is so cool. It knows exactly what we talked about yesterday. Plus the in-built Pomodoro timer keeps me off my phone while I study.
โ
Helped me get through my toughest classes. The AI whiteboard is incredible, and I love seeing my transcript update in the grade tracker when I finally ace a test.
โ
I just upload my PDFs and the tutor explains everything perfectly. I do wish there was a dark minimalist theme out of the box because the white screen burns my eyes at 2 AM, but the actual study tools are the best I've ever used.
โ
The AI tutor makes studying kind of fun? It gives me progressive hints on the whiteboard instead of just giving me the answer. The tasks feature is also super handy for keeping track of due dates.
โ
Such a clean app. The voice conversations feel so real, and I love that it auto-saves a recap and flashcards the second we stop talking. Everything is just done for you.
โ
This app is amazingly working. The text tutor helps me prep my arguments, and then I use the writing tools to clean up my assignments before submitting. The free tier is good, but Plus is where it's at for the material grounding. Totally worth it.
โ
Using the voice tutor on 'Feynman style' while following along on the whiteboard is the best way to learn. My friend told me about it and I haven't looked back since!
Everything you need to study smarter
One tab instead of five separate apps for tutoring, notes, flashcards, quizzes, and grades.
Voice tutor
Talk it through out loud, any subject, free.
Upload your courses
PDFs, slides, notes: the tutor learns your actual material.
Tasks
Deadlines and study sessions, tied to each course.
Grade tracker
See where you stand before the next assignment lands.
Voice tutoring is free, no card required, with a generous monthly allowance. Uploading your own course material and grounding answers in it is a Plus feature, see pricing for details.