Designing AI Tutors That Pick the Right Next Problem: A Practical Guide
AI in EducationInstructional DesignAdaptive Learning

Designing AI Tutors That Pick the Right Next Problem: A Practical Guide

JJordan Ellis
2026-05-20
21 min read

A practical guide to AI tutor design, learner modeling, and personalized sequencing that keeps students in the zone of proximal development.

Artificial intelligence tutors are often judged by how well they explain a concept, but the Penn study highlighted a more powerful lever: what the tutor asks a learner to do next. In a classroom, that distinction matters enormously. If an AI tutor gives great explanations but assigns the wrong practice sequence, students can still get bored, stall out, or become dependent on hints. If it selects the next problem well, it can keep learners in the productive stretch between too-easy and too-hard—the heart of the zone of proximal development.

This guide translates that idea into classroom-ready practice for teachers and edtech builders. We’ll look at how to implement learner modeling, personalize problem selection, connect the tutor to evidence-based classroom workflows, and measure whether adaptive practice is actually improving outcomes. Along the way, we’ll connect the research to practical system design, because a good AI tutor is not just a chatbot; it is a sequencing engine, a measurement system, and an instructional assistant. For a broader view of implementation and safety, it helps to compare this to embedding security into cloud architecture reviews and to the operational controls discussed in guardrails for autonomous agents.

1. What the Penn Study Actually Suggests About AI Tutor Design

The core insight: sequencing can matter more than explanation

The Penn study is important because it tested a design choice that many products treat as secondary: problem selection. All students used the same AI tutor, and the tutor was designed not to reveal answers. The key difference was the sequence of practice. One group got a fixed progression from easy to hard; the other got a personalized progression adjusted continuously based on performance and interaction. The personalized group performed better on the final exam, which suggests that adaptive sequencing can materially improve learning even when the tutor’s language model is constant.

That is a big deal for AI tutor design because it shifts attention from “How human does the bot sound?” to “Is the system keeping the student in the learning zone?” It also helps explain why some popular chat-based tutors underperform: they respond to questions, but they do not always know what the student should practice next. The Penn result supports a more disciplined tutoring model, one that resembles a skilled human tutor who watches for confusion, skips ahead when mastery is clear, and backs off when the learner is overloaded. If you want to understand how personalization changes accountability, see your digital coach, your real results.

Why “students don’t know what they don’t know” matters

Angel Chung’s point from the study is a practical one: students often cannot reliably ask for the best next question. That means a tutor that simply waits for prompts is only partially adaptive. Learners may request help on what feels hard, not what they most need, and they may avoid the very problems that would unlock progress. A well-designed tutor therefore needs its own learner model that infers mastery, uncertainty, and engagement from behavior—not just from explicit requests.

This is where learning analytics becomes central. The tutor should observe response accuracy, hint usage, latency, revision patterns, and even the sequence of attempts to estimate whether the learner is in the zone of proximal development. That logic is similar to how data teams improve operational decisions with advanced time-series functions, except here the time series is a stream of learning signals. For classroom leaders thinking about return on investment, the framing in calculating ROI for smart classrooms can help you align instructional value with budgeting and procurement.

What this does and does not prove

The Penn study is promising, but it should be read carefully. It was based on an after-school online course, focused on Python, and posted as a draft rather than a peer-reviewed paper. The reported “6 to 9 months of additional schooling” equivalence is eye-catching, but it should be treated as an estimate, not a universal promise. Even so, the direction of the finding is useful: small changes in sequencing can generate measurable gains. For edtech teams, that means you do not need to reinvent the whole tutor to get value; you may get a meaningful lift by improving the next-problem policy first.

Pro tip: Don’t launch with a giant “AI tutor” claim. Launch with a narrower promise: “Our system selects the next practice item to keep students productively challenged.” That is both more testable and more credible.

2. How to Build a Learner Model That Actually Drives Problem Selection

Start with signals you can trust

A learner model is only as good as the signals it ingests. The first layer should include correctness, attempts per item, time on task, hint requests, and whether the learner is making conceptual or procedural errors. You can add text-based signals from the LLM—like whether the student’s explanation contains misconceptions—but the safest approach is to ground adaptive decisions in observable performance. This prevents the model from overreacting to style differences, writing fluency, or superficial chatter.

Teachers should think of learner modeling as an evolving profile, not a one-time placement. A learner who misses three algebra items because of careless mistakes should not be treated the same as a learner who misses them because they do not understand variable substitution. The best systems distinguish between error types, confidence, and persistence. For a mindset shift from “content delivery” to “student modeling,” the logic is similar to choosing the right private tutor: fit matters, and fit changes over time.

Use mastery estimates, not just score averages

Average score can hide the real instructional picture. A student who scores 70% overall may actually have mastered prerequisite skills but is failing on one particular subskill. That is why many adaptive systems use mastery estimates: probabilities that a learner can solve a given skill without help. In practice, you do not need a perfect cognitive model to start. A simple Bayesian or logistic mastery score can be enough to drive useful sequencing decisions, especially when combined with recency weighting and difficulty calibration.

This is where the tutor starts to behave more like a system of adaptive practice than a static quiz bank. It should ask: Is the learner ready for a harder item, should they consolidate with a same-level item, or should they revisit a prerequisite? If you are building this as a platform, it is worth studying how other domains manage decision pipelines, such as competitive intelligence pipelines, where the key is continuous signal ingestion and routing. For students, the analogous idea is a practice engine that routes each learner to the next best challenge.

Separate knowledge state from engagement state

One of the most common design mistakes is assuming that correctness equals readiness. In reality, a student can be “right but disengaged” or “wrong but highly engaged.” The learner model should therefore track at least two states: knowledge mastery and engagement health. If a learner is consistently rushing, ignoring hints, or showing abrupt response drops, the tutor may need to lower friction, vary problem format, or insert a confidence check before escalating difficulty. That kind of design reflects the broader principle behind moving from research to runtime: features need to work for real users under real constraints.

3. Sequencing Problems Into the Zone of Proximal Development

What the zone of proximal development means in software terms

The zone of proximal development, often shortened to ZPD, is the range where a learner can solve a task with the right amount of support. In AI tutor terms, that means selecting problems that are just beyond independent mastery but not so advanced that the student can’t make progress. Software can operationalize this by using item difficulty, prerequisite relationships, and student mastery estimates to choose the next task. The goal is not maximum difficulty; the goal is maximum productive struggle.

In a classroom, this feels like a teacher saying, “Try this next one—it uses the same idea, but in a slightly new way.” That slight shift is powerful because it forces transfer rather than memorization. An adaptive tutor should mimic that teacher move by keeping the learner in a narrow difficulty band and adjusting quickly when the learner’s performance changes. That is also why design teams should think about sequencing as a policy problem, not just a content problem.

Practical sequencing rules teachers can use today

Teachers do not need a machine-learning lab to apply the logic of ZPD. A practical rule set looks like this: if a student solves two problems in a row quickly and accurately, raise difficulty slightly; if they need multiple hints or make repeated errors, drop to a prerequisite or a simpler variant; if they are correct but slow, keep difficulty level constant and focus on fluency. This makes sequencing responsive without becoming chaotic. It also keeps the tutor from “rewarding” speed alone, which can punish careful thinkers.

To implement this in class, teachers can tag assignments by skill and difficulty, then let the system move students among tiers. The best adaptive practice systems also mix in spaced review so old skills do not decay while new ones are introduced. If you are building this from scratch, you can borrow the idea of durability and iterative improvement from tech debt pruning and rebalance cycles: don’t let the system accumulate brittle assumptions about learner progress.

When to slow down, speed up, or pivot

Students do not progress in a straight line, so the tutor should not either. Slow down when the student is making the same misconception repeatedly, or when they show frustration markers such as long pauses followed by random guessing. Speed up when the learner demonstrates stable accuracy and low hint dependence across multiple items. Pivot when the error pattern reveals a missing prerequisite, because continuing forward may only compound confusion. This is the essence of personalized sequencing: matching instruction to readiness rather than to a calendar.

If you want a useful analogy from another field, think about how practitioners evaluate different setups for 90-day planning in quantum readiness. Progress depends on sequencing foundational work before advanced work. Education is no different. The difference is that in learning, the cost of sequencing mistakes is not just delay—it is disengagement, confusion, and lost confidence.

4. LLM-Guided RL: How to Connect Language Models to a Problem-Selection Engine

The architecture in plain English

Many teams now want to use LLM-guided RL, or reinforcement learning with a language-model layer, for tutoring. In practical terms, the LLM handles conversation, feedback, and explanation generation, while a separate policy model chooses the next problem based on outcomes. That separation matters because the model that talks to students is not necessarily the model that should decide instructional sequence. The sequencing policy needs to be optimized for learning reward, not conversational richness.

This separation is also a trust feature. If the LLM is free to improvise the sequence, it may privilege novelty or fluency over pedagogy. If the policy is independent, you can audit how and why a learner got a specific next problem. For teams managing high-stakes workflows, the logic is similar to protecting model integrity: when signals are noisy, you need controls around the decision layer.

Reward functions should reflect learning, not just completion

In an RL system, the reward function determines what the tutor optimizes. If you reward only correctness, the model may over-prescribe easy problems. If you reward only speed, it may overvalue superficial performance. Better reward functions include mastery gain, reduced hint dependence, retention on delayed review, and sustained engagement. A strong tutor should optimize for learning trajectory, not just session metrics.

That reward design should be built with educators, because teachers know which behaviors indicate real learning and which are just gaming the system. For example, a student who breezes through a set of easy questions may look productive, but if they fail transfer items later, the sequence was too shallow. When using analytics to guide those decisions, it can help to think like a team building data-driven growth without guesswork: the right metrics change the decisions you make every day.

Guardrails for a tutor that changes in real time

Any RL-based tutor needs guardrails. You need ceilings and floors on difficulty, rules for prerequisite coverage, and a way to override the model when the teacher wants to direct the sequence. You should also log every recommendation and the evidence behind it so the system can be audited later. This is especially important in schools, where trust depends on transparency and human oversight. A good model helps the teacher decide; it should never make classroom judgment invisible.

For a practical safety mindset, it is useful to borrow from the world of autonomous agent controls. Even if your tutor is not fully agentic, it is still making decisions that affect student learning paths. So you need escalation rules, fallback behavior, and clear accountability.

5. Measuring Impact: What to Track Beyond Final Exam Scores

Learning outcomes, not just product usage

The most important mistake in edtech measurement is confusing engagement with impact. Time spent in the system, number of messages, or completion rate do not necessarily tell you whether students learned more. You need a measurement plan with pre-tests, post-tests, delayed retention checks, and transfer tasks that require applying knowledge in a new format. That is the only way to know whether adaptive sequencing is creating durable learning rather than temporary performance gains.

The Penn study used a final exam outcome, which is useful, but classroom adopters should go further. Measure subskill mastery, error reduction over time, and whether students need fewer supports on later assignments. If your school is evaluating budget impact, pair these learning metrics with implementation metrics so you can tell a complete story. For guidance on financial framing, revisit smart classroom ROI and the broader approach to secure, efficient digital systems in secure workflow ROI.

Engagement signals that matter

Engagement is important, but it should be defined carefully. Useful engagement signals include voluntary return rate, sustained effort after an error, willingness to attempt harder items, and reduced hint overreliance. These signals indicate that the student is staying in the learning zone rather than escaping it. If students consistently drop out when the tutor increases difficulty, the system may be moving too fast, or the interface may be making productive struggle feel punitive.

A useful comparison is with media products that optimize for attention but not necessarily value. The lesson from speed playback controls is that more activity is not always better; the right interaction pattern matters. In tutoring, the equivalent is not “how many questions can students click through?” but “how many meaningful learning decisions did the tutor help them make?”

How to run an A/B test that teachers can trust

If you’re testing personalized sequencing, keep the comparison clean. Randomly assign students to fixed versus adaptive sequences, keep the content pool comparable, and avoid changing multiple variables at once. Track both immediate performance and delayed retention, and segment results by prior achievement so you can see whether the tutor helps different learners in different ways. Teachers will trust the results more if you can show which students benefitted, not just the average effect.

Also, be honest about effect size interpretation. Translating learning gains into “months of schooling” can be helpful for communication, but it should never be the only evidence presented. Use raw scores, mastery shifts, and item-level diagnostics too. That level of transparency is part of what makes a system trustworthy, much like the way publishers should be careful when explaining major platform changes in coverage of large-scale software upgrades.

6. Classroom Workflows: How Teachers Can Use Adaptive Practice Without Losing Control

Teacher-in-the-loop design

The best AI tutors are teacher-in-the-loop systems. Teachers should be able to set the standards, approve skill maps, and inspect why the tutor is recommending a given problem. That means the product needs teacher dashboards, editable sequences, and clear explanations for each recommendation. When teachers can see the instructional logic, they are more likely to trust the tool and adapt it to their classroom needs.

This matters because teachers are not looking for replacement; they are looking for leverage. They need tools that reduce routine workload, identify who is stuck, and generate more time for small-group instruction. The same principle appears in productivity tools like Excel macros for reporting workflows: automation works best when it supports judgment rather than eliminating it.

How to use adaptive practice during class

In a class period, you can use adaptive practice as a warm-up, a mid-lesson check, or a targeted intervention block. Start with a short diagnostic item set, let the tutor choose the next problem for each student, and then review the class-wide misconceptions that emerge. This gives teachers both individual insight and a shared instructional map. It also creates a smoother path from whole-class instruction to targeted support.

If you are serving mixed-ability classrooms, adaptive sequencing is especially valuable because it prevents the fastest students from getting stuck waiting and the struggling students from getting left behind. That is a hard balance for one teacher to manage manually. The tutor can handle the routine differentiation, while the teacher focuses on intervention, discussion, and motivation. That kind of support is why many schools are investing in secure, manageable digital infrastructure rather than isolated point tools.

Homework, tutoring, and test prep should use different policies

One sequencing policy will not fit every use case. Homework practice should emphasize consolidation and independence, tutoring sessions should emphasize diagnosis and scaffolding, and test prep should emphasize transfer and mixed review. If your AI tutor treats all three the same way, it will misalign instruction with goals. A student preparing for an exam needs more interleaving and retrieval practice than a student just learning a new skill.

That is why product teams should define mode-aware sequencing. A similar principle shows up in practical buying guides such as choosing the right private tutor: the best support depends on the learner’s purpose. The same is true in software.

7. Product and Data Design: Building Tutor Engineering That Scales

Design the content graph before the model

Before you train a sophisticated selection policy, map the skill graph. Identify prerequisites, sibling skills, item difficulty, and common misconceptions. Without this structure, the model may choose “harder” problems that are simply different, not educationally better. A strong content graph also makes it easier to explain sequencing decisions to teachers and administrators.

Think of the skill graph as the curriculum’s routing layer. It tells the system where it can safely branch, where it should revisit prerequisites, and where mixed review is appropriate. That’s not far from how resilient platforms are designed in growing resilient systems: the structure underneath determines how well the whole system can adapt.

Make logging and auditability first-class features

Every recommendation should be logged with the input signals, the policy decision, and the reason code. That is vital for debugging, but it is also essential for instructional trust. If a teacher asks why a student was given a remedial item after two correct answers, the system should be able to show the evidence. Without this visibility, personalization can feel arbitrary even when it is statistically sound.

For teams operating in sensitive school environments, logging should also support privacy and compliance. Use role-based access, data minimization, and retention policies that reflect district requirements. The discipline needed here resembles the rigor used in security architecture reviews, where good systems are designed for both capability and control.

Build for iteration, not perfection

Many edtech teams delay launch because they are waiting for the “perfect” adaptive model. That is usually a mistake. Start with a simple mastery-based policy, test it against a fixed sequence, and improve the model with real classroom evidence. The real advantage comes from iteration: better data, better content tags, better fallback rules, and better teacher feedback loops. Product maturity is earned through tight cycles of observation and adjustment.

That iterative approach also protects against overfitting to a single subject or school context. What works in Python might differ in math, science, or language learning. A healthy roadmap treats the Penn finding as a design principle, not a one-size-fits-all prescription. In other words, sequence matters—but the best sequence depends on the skill map, the learner, and the instructional goal.

8. A Practical Implementation Checklist for Teachers and Builders

For teachers

Start by tagging your practice items by skill and difficulty. Decide which classroom moments will use adaptive sequencing: independent practice, stations, homework, or intervention. Monitor not just accuracy but how quickly students recover from errors, because recovery speed is often a better signal of learning than first-try performance. Most importantly, keep a teacher override option so you can manually redirect students when you see a misconception the model hasn’t caught yet.

Teachers can also use a simple review structure: one retrieval item from the current lesson, one transfer item, and one prerequisite check. That pattern keeps students inside the ZPD while ensuring old knowledge stays active. If you need a low-friction way to support students across different levels, consider the broader set of personalization tools seen in AI accountability coaching and adapt it to the classroom rather than the consumer setting.

For edtech builders

Build three layers: the content graph, the learner model, and the sequencing policy. Expose each layer to humans through dashboards and logs. Use A/B tests that compare fixed versus adaptive sequencing under controlled conditions. Then measure delayed retention and transfer, not just session completion. This is the most reliable way to prove that your tutor is doing more than generating pleasant conversation.

Do not neglect onboarding. If teachers cannot understand how the model works, they may ignore it even if it is effective. Clear visualization, simple confidence indicators, and editable recommendations will go a long way. If your product is meant to scale across institutions, the operational thinking in identity and access workflows can help you design admin controls that schools actually trust.

For school leaders

Ask vendors how the tutor selects the next problem, what data it uses, whether teachers can override it, and how the vendor measures true learning gains. If the answer is only about “personalized conversation,” push for more detail. The Penn study suggests the instructional value may come less from the language model than from the sequencing policy. That means procurement should evaluate adaptive logic, not just chatbot polish.

School leaders should also require evidence of privacy safeguards and transparent reporting. A useful benchmark is whether the product can explain recommendation logic without exposing sensitive student data. The right tool should make it easier to help students, not harder to govern the system.

9. Frequently Asked Questions

How is AI tutor design different from a regular chatbot?

A regular chatbot responds to prompts. A tutor should also decide what the learner should do next, based on mastery and engagement. That sequencing layer is what makes it educational rather than merely conversational.

What is personalized sequencing in adaptive practice?

Personalized sequencing means the tutor changes the order and difficulty of problems based on a student’s performance, rather than following a fixed path for everyone. The goal is to keep the learner in the zone of proximal development.

Do we need LLM-guided RL to make this work?

No. Many schools can get value from a simpler mastery-based policy. LLM-guided RL becomes useful when you want the system to learn better selection rules over time and when you have enough data to support that optimization.

What should teachers measure first?

Start with accuracy, hint dependence, time to mastery, and delayed retention. Then compare those outcomes against a fixed-sequence group if possible. That gives you a more reliable signal than usage metrics alone.

How do we keep students from becoming overdependent on the tutor?

Limit direct answer giving, require explanation or reflection steps, and mix in independent retrieval practice. The tutor should support thinking, not replace it.

What is the biggest risk in adaptive problem selection?

The biggest risk is misclassifying the learner’s readiness and either pushing too hard or staying too easy for too long. That is why audit logs, teacher overrides, and careful pilot testing matter so much.

10. Conclusion: The Next Problem Is the Product

The Penn study is a reminder that tutoring is not only about explanation; it is about timing, pacing, and challenge. If AI tutors are going to earn trust in classrooms, they must do more than answer questions politely. They must choose the right next problem, keep students in the zone of proximal development, and show evidence that those choices improve learning. That is the real future of AI tutor design: personalized sequencing backed by learner modeling, measured with rigorous learning analytics, and supervised by educators.

For teams building this next generation of tools, the opportunity is clear. Start with a small, auditable sequencing policy. Test it against a fixed sequence. Measure what matters. Then iterate with teachers, not around them. If you want more context on the broader design patterns behind intelligent systems, see also research-to-runtime product translation, autonomous guardrails, and model integrity protection.

Related Topics

#AI in Education#Instructional Design#Adaptive Learning
J

Jordan Ellis

Senior SEO Content Strategist

Senior editor and content strategist. Writing about technology, design, and the future of digital media. Follow along for deep dives into the industry's moving parts.

2026-05-24T23:20:30.196Z