Adaptive learning

From Knowino
Revision as of 14:21, 6 December 2010 by Boris Tsirelson (talk | contributions)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Adaptive learning is an educational method which uses computers as interactive teaching devices. Computers adapt the presentation of educational material according to students' weaknesses, as indicated by their responses to questions. The motivation is to allow electronic education to incorporate the value of the interactivity afforded to a student by an actual human teacher or tutor. The technology encompasses aspects derived from various fields of study including computer science, education, and psychology.

Adaptive learning systems' primary application is in education, but another popular application is business training. They have been designed as both desktop computer applications and web applications.

Contents

[edit] History

Adaptive learning or Intelligent tutoring has its origins in the artificial intelligence movement and began gaining popularity in the 1970s. At that time, it was commonly accepted that computers would eventually achieve the human ability of adaptivity. In Adaptive learning, the basic premise is that the tool or system will able to adjust to the student/user's best learning method, which results in a better and more effective learning experience for the user. Back in the 70s the main barrier was the cost and size of the computers rendering the widespread application impractical. Another hurdle in the adoption of early intelligent systems was that the user interfaces were not conducive to the learning process.

It was not until AutoTutor which was developed by the Institute of Intelligent System around the turn of the century that adaptive learning systems got a voice. This was a major step in adaptive learning systems because it added another medium in communication with the end user. According to the founder and lead on the AutoTutor project - Graesser - "Spoken computational environments may foster social relationships that may enhance learning." Also, in some applications audio content is a necessity, such as language learning applications. Today, the number of new adaptive learning system companies is growing steadily as more classroom are becoming computerized and other industries are finding use for the applications of adaptive learning - such as professional development.

[edit] Technology/Methodology

Adaptive learning systems have traditionally been divided into separate components or 'models'. While different model groups have been presented, most systems include some or all of the following models (occasionally with different names) [1][2][3]:

[edit] Expert Model

The expert model stores information about the material which is being taught. This can be as simple as the solutions for the question set but it can also include lessons and tutorials and, in more sophisticated systems, even expert methodologies to illustrate approaches to the questions.

Adaptive learning systems which do not include an expert model will typically incorporate these functions in the instructional model.

[edit] Student Model

Student model algorithms have been a rich research area over the past twenty years. The simplest means of determining a student's skill level is the method employed in CAT (Computer Adaptive Testing). In CAT, the subject is presented with questions which are selected based on their level of difficulty in relation to the presumed skill level of the subject. As the test proceeds, the computer adjusts the subject's score based on their answers, continuously fine-tuning the score by selecting questions from a narrower range of difficulty.

An algorithm for a CAT-style assessment is simple to implement. A large pool of questions is amassed and rated according to difficulty, either through expert analysis, experimentation, or a combination of the two. The computer then performs what is essentially a binary search, always giving the subject a question which is half way between what the computer has already determined to be the subject's maximum and minimum possible skill levels. These levels are then adjusted to the level of the difficulty of the question, reassigning the minimum if the subject answered correctly, and the maximum if the subject answered incorrectly. Obviously, a certain margin for error has to be built in to allow for scenarios where the subject's answer is not indicative of their true skill level but simply coincidental. Asking multiple questions from one level of difficulty greatly reduces the probability of a misleading answer, and allowing the range to grow beyond the assumed skill level can compensate for possible misevaluations.

Richer student model algorithms look to determine causality and provide a more extensive diagnosis of student's weaknesses by linking 'concepts' to questions and defining strengths and weaknesses in terms of concepts rather than simple 'levels' of ability. Because multiple concepts can influence a single question, questions have to be linked to all relevant concepts. For example, a matrix can list binary values (or even scores) for the intersection of every concept and every question. Then, conditional probability values have to be calculated to reflect the likelihood that a student who is weak in a particular concept will fail to correctly answer a particular question. A a student takes a test, the probabilities of weakness in all concepts conditional on incorrect answers in all questions can be calculated using Bayes' Law (these adaptive learning methods are often called bayesian algorithms)[4].

A further extension of identifying weaknesses in terms of concepts is to program the student model to analyze incorrect answers. This is especially applicable for multiple choice questions. Consider the following example:

Q. Simplify: 2x2 + x3
a) Can't be simplified
b) 3x5
c) ...
d) ...

Clearly, a student who answers (b) is adding the exponents and failing to grasp the concept of like terms. In this case, the incorrect answer provides additional insight beyond the simple fact that it is incorrect.

[edit] Instructional Model

The instructional model generally looks to incorporate the best educational tools that technology has to offer (such as multimedia presentations) with expert teacher advice for presentation methods. The level of sophistication of the instructional model depends greatly on the level of sophistication of the student model. In a CAT-style student model, the instructional model will simply rank lessons in correspondence with the ranks for the question pool. When the student's level has been satisfactorily determined, the instructional model provides the appropriate lesson. The more advanced student models which assess based on concepts need an instructional model which organizes its lessons by concept as well. The instructional model can be designed to analyze the collection of weaknesses and tailor a lesson plan accordingly.

When the incorrect answers are being evaluated by the student model, some systems look to provide feedback to the actual questions in the form of 'hints'. As the student makes mistakes, useful suggestions pop up such as "look carefully at the sign of the number". This too can fall in the domain of the instructional model, with generic concept-based hints being offered based on concept weaknesses, or the hints can be question-specific in which case the student, instructional, and expert models all overlap.

[edit] Implementations

[edit] Classroom Implementation

Adaptive learning which is implemented in the classroom environment using information technology is ofter referred to as an Intelligent Tutoring System or an Adaptive Learning System. Intelligent Tutoring Systems operate upon three basic principals [5]:

[edit] Distance Learning Implementation

Adaptive Learning systems can be implemented on the Internet for use in distance learning and group collaboration applications.

The field of distance learning now incorporating aspects of adaptive learning. Initial systems without adaptive learning were able to provide automated feedback to students who are presented questions from a preselected question bank. That approach however lacks the guidance which teachers in the classroom can provide. Current trends in distant learning call for the use of adaptive learning to implement an environment with intelligent dynamic behavior in the learning environment.

During the time a student spends learning a new concept they are tested on their abilities and databases track their progress using one of the models. The latest generation of distance learning systems take into account the students' answers and adapt themselves to the student's cognitive abilities using a concept called 'cognitive scaffolding'. Cognitive scaffolding is the ability of an automated learning system to create a cognitive path of assessment from lowest to highest based on the demonstrated cognitive abilities.[6] A current successful implementation of adaptive learning in web-based distance learning is the Maple engine of WebLearn by RMIT university. [7] WebLearn is advanced enough that it can provide assessment of questions posed to students even if those questions have no unique answer like those in the Mathematics field.

Group collaboration is also a hot field in the adaptive learning research area. Group collaboration is a key field in Web 2.0 which extends the functionality of distance learning. Adaptive learning can be incorporated to facilitate collaboration within distance learning environments like forums or resource sharing services.[8] Some examples of how adaptive learning can help with collaboration include:

[edit] References

  1. Charles P. Bloom, R. Bowen Loftin Facilitating the Developmentand Use of Interactive Learning Environments, Lawrence Erlbaum Associates (1998).
  2. What is an Intelligent Tutoring System?. Retrieved on August 6, 2008.
  3. A Proposed Student Model Algorithm for Student Modeling and its Evaluation. Retrieved on August 6, 2008.
  4. A Bayesian Diagnostic Algorithm for Student Modeling and its Evaluation. Retrieved on August 6, 2008.
  5. Adaptive Learning Systems - National Institute of Standards and Technology. Retrieved on August 17, 2008.
  6. Cognitive scaffolding for a web-based adaptive learning environment. Retrieved on August 17, 2008.
  7. Addressing Different Cognitive Levels for On-line Learning. Retrieved on August 17, 2008.
  8. Towards web-based adaptive learning communities. Retrieved on August 17, 2008.
Information.svg Some content on this page may previously have appeared on Citizendium.
Personal tools
Variants
Actions
Navigation
Community
Toolbox