9 D. E. Shaw Quantitative Analyst (Intern) Interview Questions (2026)
D. E. Shaw's quant intern loop in 2026 covers probability brainteasers, statistics, coding, and a fit conversation. The firm has multiple intern programs (asset management, systematic trading, computational biology, structured products) with semi-independent hiring. The intern program is the firm's primary new-grad pipeline for quant roles.
By Alex Chen, Founder, InterviewChamp.AI · Last verified
Loop overview
Recruiter call → CodeSignal/HackerRank OA (90 min) → first-round phone (probability heavy, 45 min) → onsite of three to four rounds: probability/brainteasers, mental math, coding round, fit conversation. Timeline 4-6 weeks. D. E. Shaw is known for unusual brainteasers — practice deriving from first principles.
Behavioral (2)
Tell me about a time you solved a problem that seemed initially intractable.
Frequently askedOutline
STAR. Pick a real problem where you reframed or applied a non-obvious technique. D. E. Shaw values creative problem-solving — show you can think beyond pattern-matching.
Why D. E. Shaw's summer internship?
Frequently askedOutline
Specific reasons: multi-strategy firm with breadth (systematic trading, structured products, computational biology), strong intellectual culture, mentor-rich environment. Reference any specific D. E. Shaw public output (papers, blog posts) if you have read them. Avoid generic praise.
Coding (LeetCode patterns) (2)
Implement a function that returns the contiguous subarray with the largest sum.
Frequently askedOutline
Kadane's algorithm. Track max_ending_here = max(num, max_ending_here + num); track global max. O(n) time, O(1) space. Edge case: all negatives — return single largest. Walk through example. Discuss return-the-subarray follow-up.
Given a list of integers, find the two that sum to a target.
Occasionally askedOutline
Hash map. Walk array; for each value v, check if target - v is in map; if yes, return (target-v, v). Else add v to map. O(n) time, O(n) space. Walk through example.
Technical (5)
A bag contains 10 red marbles and 10 blue marbles. What is the probability that the first two marbles drawn (without replacement) are different colors?
Frequently askedOutline
Two paths to different colors: (RB) or (BR). P(R then B) = (10/20)(10/19). P(B then R) = (10/20)(10/19). Total = 2·(10/20)(10/19) = 100/190 = 10/19. State the calculation. Alternative: 1 - P(same color) = 1 - 2·(10/20)(9/19) = 1 - 9/19 = 10/19. Match.
Three points are chosen uniformly at random on a circle. What is the probability they form an obtuse triangle?
Frequently askedOutline
Triangle is obtuse iff all three points lie within a semicircle. Probability of all three in a fixed semicircle: 1/4 (by integration). But the 'starting position' of the semicircle is variable. Use complementary counting: P(any pair within π distance, third within same semicircle). Result: 3/4. Discuss the geometric reasoning carefully — interviewer is testing whether you can set up the problem, not finish it perfectly.
Compute 14 × 16.
Frequently askedOutline
Difference of squares: 14·16 = (15-1)(15+1) = 225 - 1 = 224. State the trick. Practice these patterns.
You have a 5-gallon and a 3-gallon jug. How do you measure exactly 4 gallons?
Frequently askedOutline
Classic Die Hard problem. Fill 5-gallon. Pour into 3-gallon, leaving 2 in the 5. Empty 3-gallon. Pour the 2 from 5-gallon into 3-gallon. Refill 5-gallon. Pour from 5 into 3 (which has 2 in it, capacity 1). Now 5-gallon has 4. State the steps clearly. Discuss the underlying number-theory: gcd(5,3) = 1, so all integers from 0-8 are reachable.
What is the expected number of fair coin flips to see HT (heads then tails)?
Frequently askedOutline
Markov chain. States: 0 (haven't seen H yet), 1 (just saw H, waiting for T). E_0 = 1 + (1/2)·E_1 + (1/2)·E_0. E_1 = 1 + (1/2)·0 + (1/2)·E_1. Solve E_1: E_1/2 = 1, so E_1 = 2. Then E_0 = 1 + 1 + E_0/2, so E_0 = 4. State the recurrence cleanly.
D. E. Shaw interview tips
- D. E. Shaw's brainteasers test first-principles reasoning. Practice deriving from scratch.
- Mental math should be reflexive — two-digit multiplication, squares, percent conversions.
- Probability puzzles often have a famous-paradox flavor. State ambiguities upfront before diving in.
- Python is the default for coding rounds. R is acceptable if listed on resume.
- Conversion to full-time is the primary pathway — strong intern performance becomes a full-time offer.
Frequently asked questions
How long is D. E. Shaw's intern interview process in 2026?
Most candidates report 4-6 weeks from initial contact to offer.
What is the conversion rate from D. E. Shaw intern to full-time?
Publicly reported anecdotal numbers are around 60-70% for strong performers.
Does D. E. Shaw sponsor visas for interns?
Yes. F-1 OPT and CPT for current US students. London office offers alternative paths.
What are D. E. Shaw's intern programs across groups?
Major intern tracks include systematic trading, structured products, asset management, and computational biology. Each runs semi-independent hiring with shared screening rounds.
Can I reapply to D. E. Shaw intern after rejection?
Yes. Each cycle is independent.
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 →