How the adaptive IQ test works
AurorIQ's 25-question IQ test uses a computerized adaptive approach based on a three-parameter logistic item response theory (3PL IRT) model. Instead of treating every correct answer as equally informative, the model represents each item with three parameters: difficulty (b), discrimination (a), and a lower-asymptote or guessing parameter (c). After each response, the engine updates an estimate of ability, called theta (θ), and selects an unanswered item that provides high statistical information near that estimate while maintaining coverage across the five reasoning domains.
The current implementation uses bounded Newton–Raphson maximum-likelihood estimation. Theta is constrained to −4 to +4 to keep numerical optimization stable. Item information is summed across answered items, and the standard error is calculated as the inverse square root of total test information. This is why the result includes uncertainty rather than presenting a single number as exact.
Scoring breakdown, step by step
| Stage | What the code does | What it means for you |
|---|---|---|
| 1. Item selection | Chooses an unanswered item with high IRT information near the current θ estimate while prioritizing domains that still need coverage. | Your test path can differ from another person's even when both people answer 25 questions. |
| 2. Ability estimate | Uses all scored responses in a bounded maximum-likelihood estimate rather than a simple raw-correct total. | Harder or more informative response patterns can influence the estimate differently from an unweighted quiz score. |
| 3. Standard error | Computes SE = 1 / √(test information) at the estimated θ. | More informative response patterns produce a narrower model-based uncertainty range. |
| 4. IQ-scale transform | Transforms theta using IQ = 100 + 15θ and rounds to a whole number. | The familiar IQ scale is a mathematical transform of the model estimate, not an independently normed clinical score. |
| 5. Percentile | Maps θ through the standard normal cumulative distribution, capped for display between 0.1 and 99.9 percentile. | The percentile is model-based and should not be read as an observed percentile from a representative AurorIQ norm sample. |
| 6. Confidence interval | Uses approximately 1.96 × SE × 15 as the margin around the raw transformed score. | The interval communicates model uncertainty from the current items; it is not the same as an empirically validated test-retest confidence interval. |
Display limits: the public point score is constrained to a display range of 55–145. The underlying raw transform can extend beyond that range, while the displayed confidence bounds are separately constrained. These limits prevent a short online test from implying extreme-score precision it has not earned.
What the five domains represent
The assessment samples pattern recognition, numerical reasoning, verbal reasoning, spatial reasoning, and working memory. Those areas are relevant to broad traditions in cognitive measurement, but AurorIQ's five-domain design is its own practical online battery. It should not be described as equivalent to a WAIS, Stanford–Binet, Woodcock–Johnson, or any other proprietary, norm-referenced clinical test.
The overall estimate uses the full response set. Domain estimates are calculated separately from each domain's responses, seeded by the overall theta estimate. Because a 25-item test gives only about five items to each domain, the code explicitly marks these domain estimates as low precision. We therefore use them mainly to describe the shape of a profile—relative strengths within the same sitting—rather than to claim precise domain IQ scores.
Validity: what evidence exists today
In psychometrics, validity is not a badge a test earns once; it is an evidence-based argument that a particular interpretation of scores is appropriate for a particular use. The Standards for Educational and Psychological Testing, produced jointly by AERA, APA, and NCME, emphasizes validity, reliability/precision, and fairness when tests are developed and interpreted. AurorIQ uses those ideas as an evaluation framework, but we do not claim formal compliance, certification, or endorsement by those organizations.
Transparent scoring logic
The item-selection, probability, information, maximum-likelihood, standard-error, scale-conversion, and confidence-range logic is visible in the client-side code and described on this page.
Content rationale
Items are organized around recognizable reasoning constructs and difficulty levels. That gives a defensible content rationale, but content rationale alone does not establish criterion, convergent, or predictive validity.
External validation
AurorIQ has not yet published a large representative norming study, test–retest reliability study, measurement-invariance analysis, or independent comparison against professionally administered cognitive batteries.
Accordingly, the strongest defensible interpretation is: AurorIQ provides a model-based educational estimate of performance on this item bank under the conditions of this sitting. It does not provide a clinical diagnosis, educational eligibility decision, employment credential, legal finding, or official IQ classification.
Calibration and norming status
The difficulty, discrimination, and guessing parameters in the present item bank are expert-seeded starting values. They have not yet been re-estimated from a large representative response sample. Likewise, the conversion to the familiar mean-100, SD-15 scale assumes a standard-normal theta reference; it is not currently anchored to a population norm sample collected by AurorIQ.
A stronger future calibration program would require enough quality-controlled responses to estimate item parameters, inspect item fit and local dependence, detect differential item functioning across relevant groups, evaluate test information across the ability range, cross-validate on a holdout sample, and publish uncertainty and sample limitations. Until that work exists, we deliberately avoid calling the test “clinically validated” or “professionally normed.”
Reliability, precision, and repeat scores
The confidence interval shown by the current engine is derived from IRT test information in a single sitting. That is useful, but it is only one form of precision evidence. It does not replace empirical reliability studies. A complete reliability program would examine stability across repeated sittings, alternate forms, internal consistency where appropriate, and how much measurement error changes across ability levels.
Real users can score differently across attempts because of sleep, stress, distraction, guessing, learning the item format, prior exposure to the same questions, device conditions, and random item selection. A retake should therefore be treated as another measurement, not proof that intelligence suddenly changed.
Fairness and interpretation standards
Good testing practice asks whether score interpretations remain appropriate across the populations who take the test. AurorIQ is currently an English-language online instrument, so verbal items can be affected by language exposure, education, culture, reading experience, and familiarity with online test formats. Numerical items can reflect schooling as well as reasoning. Timed tasks can be affected by hardware, input devices, browser performance, motor speed, and accessibility needs.
Those influences are not reasons to hide results; they are reasons to interpret them carefully. We do not currently claim measurement invariance or equal predictive meaning across languages, cultures, disability groups, ages, or educational backgrounds. If future data show meaningful group-specific item behavior, the correct response is to revise the item bank or interpretation—not to explain away the discrepancy.
Archetypes and rarity estimates
Your cognitive archetype is based on the relative ranking and shape of your domain estimates, not on a separate validated psychological construct. It is intended as a memorable summary of within-profile strengths. Rarity percentages shown for tiers or archetypes are model/simulation-based estimates rather than measured prevalence in a representative AurorIQ user population. They should be read as descriptive UI, not epidemiological statistics.
How test data is handled in this codebase
The assessment engine is implemented client-side. The current JavaScript test engine does not contain fetch, XMLHttpRequest, sendBeacon, WebSocket, or similar network calls for transmitting answer-by-answer test data. In-progress state and recent results are handled through browser storage so the experience can work without a user account. Theme and consent preferences are also stored locally.
Analytics and advertising are separate from the scoring engine. When enabled, Google Analytics and Google AdSense can process site-usage, device, cookie, and advertising data according to the user's consent choices and Google's policies. The details and user choices are documented in our Privacy Policy and Advertising Disclosure.
Future research data: if AurorIQ begins collecting anonymized item-response data for empirical calibration, that collection should be implemented with an updated privacy notice, clear purpose limitation, retention rules, and appropriate consent/legal basis before the data is used.
Research and standards used as reference points
The frameworks below inform how we discuss cognitive measurement and testing quality. Citation is not affiliation or endorsement. For testing practice, we look to the open-access Standards for Educational and Psychological Testing (AERA, APA, NCME) and the APA standards and guidelines. For item response theory, the implementation follows standard 3PL concepts described in established psychometric literature, including work by Lord & Novick and Embretson & Reise.
AERA · APA · NCME
Testing standards emphasizing evidence for score interpretation, reliability/precision, fairness, appropriate use, and transparency.
Item response theory
The statistical family used for item characteristic functions, information, adaptive selection, and ability estimation in the main IQ test.
CHC / broad-abilities tradition
A major tradition for thinking about broad cognitive abilities. AurorIQ's five domains are informed by this landscape but are not a formal CHC battery.
Cognitive assessment research
Research on working memory, fluid reasoning, processing, and test conditions informs the site's educational explanations and limitations.
Limits you should keep in mind
- Not a clinical instrument. Do not use AurorIQ for diagnosis, disability evaluation, educational accommodations, legal decisions, hiring, credentialing, or high-IQ society admission.
- No representative AurorIQ norms yet. The familiar IQ and percentile displays are model transforms, not observed population norms from a representative validation sample.
- Item parameters are expert-seeded. They still need empirical calibration and cross-validation.
- Per-domain estimates are especially uncertain. Roughly five items per domain is too little evidence for precise subscale interpretation.
- Language and schooling matter. Verbal and numerical performance can reflect experience as well as reasoning.
- Device and state matter. Timing, attention, fatigue, stress, and hardware can change results.
- Practice effects are real. Repeated exposure to the same bank can make later attempts easier.
Who built and maintains AurorIQ
AurorIQ is independently built and maintained by Muhammad, a developer interested in data-driven tools, cognitive measurement, and transparent online assessment. The project is intentionally explicit about the difference between using psychometric methods and having a clinically validated instrument.
The test engine, scoring code, adaptive item selection, archetype system, and editorial material are produced independently. Advertising does not determine scoring or editorial conclusions. Corrections are welcome at contact@auroriq.com or through the Contact page.
Frequently asked questions
Is AurorIQ a validated IQ test?
Not in the clinical or professional sense. The scoring engine uses IRT-based methods, but AurorIQ has not yet published the representative norming, reliability, external-validity, and fairness studies required to support a professional validation claim.
Why show an IQ-style score if the test is not clinically normed?
The score is a familiar transform of the model's theta estimate using mean 100 and standard deviation 15. It makes the output easier to interpret, but the label does not turn the result into a clinical IQ score. The confidence interval and limitations should be read with the point estimate.
What does the 95% confidence interval mean?
It is a model-based uncertainty range calculated from the test information available in your 25 responses. It describes uncertainty in this scoring model; it is not proof that 95% of repeated real-world scores would fall inside the displayed range without empirical validation.
Are the domain scores as reliable as the overall score?
No. Each domain is represented by only about five items, so domain estimates carry much more uncertainty. They are best used as directional, within-profile indicators rather than precise sub-scores.
Does AurorIQ send my individual answers to a server?
In the current V6 codebase, the test engine does not contain network calls that transmit answer-by-answer test responses. Test state and recent results are handled in browser storage. Analytics and advertising are separate services governed by the site's consent and privacy controls.
Can I use this result for school, work, diagnosis, or Mensa?
No. AurorIQ is an educational self-reflection tool. High-stakes decisions require an appropriately validated assessment administered and interpreted for that purpose by qualified professionals.