Skip to main content

9 Citadel Quantitative Researcher (Intern) Interview Questions (2026)

Citadel's quant intern loop in 2026 covers probability, statistics, ML methodology, and coding under time pressure. Citadel's intern programs (Discover at Citadel for sophomores, Quant Intern for juniors) are highly competitive and serve as the primary new-grad pipeline. Conversion rates from internship to full-time are high for strong performers.

By Alex Chen, Founder, InterviewChamp.AI · Last verified

Loop overview

Recruiter call → 60-min HackerRank/probability test → first-round phone interview (45 min, math-heavy) → onsite of three to four rounds: probability/statistics, coding (Python heavy), behavioral, sometimes a research methodology round. Timeline 3-6 weeks. Intern hiring moves faster than new-grad because there is no team-match phase.

Behavioral (2)

Tell me about a research project you have worked on.

Frequently asked

Outline

STAR. Pick a real project — coursework, thesis, summer research. Walk through: problem definition, methodology, results, what you learned. For interns, methodology matters most — clean experimental design beats fancy results.

Source: Glassdoor Citadel quant intern behavioral round, 2026 ·

Why are you interested in interning at Citadel?

Frequently asked

Outline

Specific reasons: multi-strategy platform offers diverse problems, top-tier data infrastructure, structured intern program with mentorship. Reference any specific Citadel public output (blog posts, conference talks) you have read. Avoid generic praise.

Source: Glassdoor Citadel intern fit round, 2026 ·

Coding (LeetCode patterns) (2)

Implement a function to compute the median of a stream.

Frequently asked

Outline

Two heaps. Max-heap for lower half, min-heap for upper half. Add: insert into one based on value, rebalance. Median: if equal sizes, average tops; else top of larger heap. O(log n) per add, O(1) median. Walk through with example.

Source: Levels.fyi Citadel quant intern coding round, 2026 ·

Given an array, find the length of the longest increasing subsequence.

Frequently asked

Outline

Two approaches: (1) DP O(n^2): dp[i] = LIS ending at i. (2) Patience sort with binary search: O(n log n). Maintain a tails array; for each value, replace first tail >= value (or append). Length of tails = LIS length. Walk through. Mention reconstruction requires parent pointers.

Source: r/cscareerquestions Citadel intern coding round, 2026 ·

Technical (5)

What is the expected value of rolling a fair 6-sided die?

Frequently asked

Outline

Sum of values divided by number of outcomes: (1+2+3+4+5+6)/6 = 21/6 = 3.5. State the calculation. Be ready for follow-ups: variance, expected value of max of two dice, conditional expectations.

Source: Glassdoor Citadel quant intern probability phone, 2026-Q1 ·

Given a fair coin, what is the probability of getting 3 heads in 5 flips?

Frequently asked

Outline

Binomial. C(5,3)·(1/2)^5 = 10/32 = 5/16. State the binomial formula and plug in. Be ready for follow-up: at least 3 heads (P = C(5,3) + C(5,4) + C(5,5) all times 1/32 = 16/32 = 1/2).

Source: r/cscareerquestions Citadel intern probability round, 2026 ·

Compute the variance of a uniform distribution on [a, b].

Frequently asked

Outline

Variance = (b-a)^2 / 12. Derive: E[X] = (a+b)/2. E[X^2] = ∫_a^b x^2 / (b-a) dx = (a^2 + ab + b^2)/3. Var = E[X^2] - E[X]^2 simplifies to (b-a)^2/12. State the answer and derivation.

Source: Glassdoor Citadel quant intern statistics round, 2026 ·

What is the difference between correlation and causation?

Frequently asked

Outline

Correlation: statistical association between two variables (one moves with the other). Causation: one variable causes the other to change. Confounders, reverse causation, and selection bias can produce correlation without causation. Establishing causation requires controlled experiments (RCT) or careful causal inference techniques (DAGs, instrumental variables). Discuss why finance is hard: most signals are correlational, not causal.

Source: Glassdoor Citadel quant intern statistics round, 2026 ·

Explain the law of large numbers.

Occasionally asked

Outline

Sample mean of n iid random variables converges to the true mean as n grows. Weak LLN: sample mean converges in probability. Strong LLN: converges almost surely. State the result and the assumptions (iid, finite mean). Discuss why this matters in finance — sample averages of returns require large n to be reliable; structural changes (regime shifts) violate iid.

Source: Glassdoor Citadel quant intern statistics round, 2026 ·

Citadel interview tips

  • Probability and statistics dominate. Brush up on distributions (normal, uniform, exponential, Bernoulli), expected value, variance, CLT, LLN.
  • Python with pandas/numpy is the lingua franca. SQL helps if listed on resume.
  • Intern programs are competitive but with a slightly lower bar than new-grad full-time. Strong undergraduate research counts heavily.
  • Behavioral rounds are not perfunctory. Citadel values intellectual humility even at the intern level.
  • Conversion to full-time is the primary pathway — treat the internship as a 10-week extended interview.

Frequently asked questions

How long is Citadel's quant intern interview process in 2026?

Most candidates report 3-6 weeks from initial contact to offer. Intern hiring is faster than new-grad because there's no team-match phase.

What is the conversion rate from Citadel intern to full-time?

Publicly reported anecdotal numbers are around 60-70% for strong performers. Weak performers may not receive offers; strong performers convert.

Does Citadel sponsor visas for interns?

Yes. F-1 OPT and CPT for current US students. Other visa types case-by-case with recruiter.

What is the difference between Discover at Citadel and the Quant Intern program?

Discover is for first/second-year students, shorter and more exploratory. Quant Intern is for juniors (third-year), longer (10-12 weeks), and treated as a primary new-grad pipeline.

Can I reapply to Citadel intern after rejection?

Yes. Each cycle is independent though previous interview notes are reviewed.

Practice these live with InterviewChamp.AI

Real-time AI interview assistant that listens to your loop and helps you structure answers under pressure.

Practice these live with InterviewChamp.AI →