Neural-Symbolic Knowledge Tracing

Created: 2026-05-08 | Tags: intelligent-tutoringlearning-analyticsadaptive-learningpedagogical-safetymastery-learning
๐Ÿ“„ Full text: arXiv:2604.08263 ยท local
Combining neural networks with symbolic educational knowledge for interpretable, data-efficient, and temporally reliable learner modeling in intelligent tutoring systems.

The Problem with Pure Neural Approaches

Hooshyar et al. (2026) identify key limitations in both LLM-based tutoring and conventional Deep Knowledge Tracing (DKT):

The Responsible-DKT Model

Hooshyar et al. propose Responsible-DKT, a neural-symbolic architecture built on the Lifted Relational Neural Networks (LRNN) paradigm using PyNeuraLogic. The key innovation: symbolic educational knowledge is injected as learnable weighted rules that modulate (not override) neural predictions.

Architecture

Component Detail
Embeddings Learnable vectors for quiz, skill, correctness (dim=16)
Combined rep Weighted sum of embeddings + sigmoid activation
Recurrent core Two-layer RNN with temporal shift (prediction at t uses only past interactions)
Symbolic rules Three rules with learnable weights, wired into the computation graph
Output Sigmoid over hidden state + target embedding โ†’ ลท_{t+1}

Injected Educational Knowledge (Symbolic Rules)

1. mastered rule: Two consecutive correct responses on the same skill/quiz โ†’ increases prediction confidence. Encodes the pedagogical assumption that sustained correctness signals mastery. 2. not_mastered rule: Three incorrect responses on the same skill/quiz โ†’ decreases prediction confidence. Encodes the assumption that repeated failure is a stronger signal โ€” the paper found this rule dominates prediction updates. 3. avg_embed rule: Historical aggregation of past embeddings for the same skill/quiz โ€” provides a long-run average representation of the student's relationship to a knowledge component.

Baselines

Key Findings

Data Efficiency (RQ1)

Temporal Reliability (RQ2)

- Responsible-DKT: 0.013โ€“0.039 - PyTorch DKT: 0.075โ€“0.138

Interpretability (RQ3)

Dataset

Real-world 6th-grade Maths from Opiq: 167 students, 21,471 interactions, 13 skills, 1,058 quizzes. Scores binarized at first-quartile threshold (37/100).

Connection to Knowledge Tracing Landscape

Traditional Knowledge Tracing (KT) methods:

Implications for Responsible AI in Education

The paper positions this under responsible AI (Goellner et al., 2024: "human-centred approach fostering user trust through ethical decision-making, explainable outcomes, and privacy-preserving implementation"):

1. Transparency: Symbolic components make learner state auditable โ€” critical for safety auditing. 2. Pedagogical validity: Updates follow educational theory (mastery learning, repeated-failure signals), not just data patterns. 3. Data efficiency: Practical in real educational settings where large labeled datasets are rare. 4. Temporal trustworthiness: Predictions don't oscillate wildly โ€” a key requirement for student trust and instructor decision-making.

This contrasts with opaque LLM-based approaches in tutoring alignment and demonstrates a path toward principled AI in education โ€” augment, don't displace, pedagogical reasoning.

Open Questions

Related Pages

Sources