Skip to main content

10 Hudson River Trading Quantitative Researcher (New Grad) Interview Questions (2026)

Hudson River Trading's new-grad quant researcher loop in 2026 emphasizes probability, statistical reasoning, and clean coding. The firm is small (~800 employees globally) and the interview process moves faster than larger competitors, with onsites compressed into 1-2 days. Expect to discuss research methodology rigorously and demonstrate ability to think about market microstructure.

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

Loop overview

Recruiter outreach → 90-min HackerRank coding test → first-round phone (probability + coding, 45 min) → onsite of three to four rounds, typically packed into one day: probability/statistics, coding (C++ or Python), market microstructure conversation, fit/behavioral. Timeline 3-6 weeks. HRT compensates strongly for new-grads but has a high washout rate in the first year — fit signal is taken seriously.

Behavioral (2)

Tell me about a time you collaborated with someone you disagreed with technically.

Frequently asked

Outline

STAR. Pick a real disagreement, not a contrived one. Walk through how you presented evidence, listened, and reached a resolution. Hudson River screens for low-ego collaboration — they have small teams where one cynic can poison morale.

Source: Glassdoor Hudson River Trading behavioral round, 2026 ·

Why Hudson River Trading rather than a larger firm?

Frequently asked

Outline

Small-firm reasons: smaller teams, faster decision-making, broader exposure (research and engineering blend), direct mentorship from senior researchers. Reference the firm's technology focus (real-time systems, low-latency). Avoid the 'high pay' lead. Show you understand the tradeoff: less brand recognition, less infrastructure, more individual impact.

Source: Glassdoor Hudson River Trading fit round, 2026 ·

Coding (LeetCode patterns) (1)

Implement a function that returns the kth largest element in an unsorted array.

Frequently asked

Outline

Three approaches with tradeoffs: (1) Sort, return arr[n-k], O(n log n). (2) Min-heap of size k, O(n log k). (3) Quickselect, O(n) average, O(n^2) worst. Code up the heap solution (easier to get right). Mention quickselect for the interviewer if they ask about optimal.

Source: Glassdoor Hudson River Trading coding round, 2026 ·

Technical (7)

A fair coin is flipped 4 times. What is the probability of exactly 2 heads?

Frequently asked

Outline

Binomial. C(4,2) · (1/2)^2 · (1/2)^2 = 6 · 1/16 = 6/16 = 3/8. State the binomial formula generally, then plug in. Be ready for follow-up: 'what about at least 2 heads' (sum k=2..4 binomial terms = 11/16).

Source: Glassdoor Hudson River Trading probability phone screen, 2026-Q1 ·

Given two independent uniform random variables X and Y on [0,1], what is the expected value of max(X, Y)?

Frequently asked

Outline

Use order statistics. P(max ≤ t) = P(X ≤ t)·P(Y ≤ t) = t^2 for t in [0,1]. CDF = t^2, PDF = 2t. E[max] = ∫_0^1 t·2t dt = 2/3. Mention general result: for n iid uniforms, E[max] = n/(n+1). Discuss intuition: max is biased toward 1, so above 1/2.

Source: r/quant Hudson River Trading probability round, 2026 ·

What is the probability that two random points on a unit circle are within distance 1 of each other?

Occasionally asked

Outline

Fix one point at (1,0) by symmetry. The other is uniform on the circle, parameterized by angle θ in [0, 2π). Distance = 2|sin(θ/2)|. Distance ≤ 1 iff |sin(θ/2)| ≤ 1/2 iff θ ≤ π/3 or θ ≥ 5π/3. Total favorable arc = 2π/3. Probability = (2π/3) / (2π) = 1/3.

Source: Glassdoor Hudson River Trading geometric probability, 2026 ·

Explain bias-variance tradeoff in machine learning models.

Frequently asked

Outline

Total expected error = bias^2 + variance + irreducible error. Bias: model's average prediction vs truth (underfitting). Variance: how much prediction wiggles across training sets (overfitting). Simpler models high bias low variance; complex models the opposite. Regularization, cross-validation, and ensembling shift the tradeoff. Apply to a concrete example — linear vs polynomial regression.

Source: Glassdoor Hudson River Trading ML round, 2026 ·

Compute 1/7 as a decimal in your head.

Frequently asked

Outline

0.142857 repeating. The trick: memorize the cycle. Then 2/7 = 0.285714, 3/7 = 0.428571, etc. — same digits, shifted. Hudson River values reflex-speed answers for these warmup mental math drills.

Source: r/cscareerquestions Hudson River Trading mental math round, 2026 ·

What happens to the bid-ask spread of a stock during high volatility?

Occasionally asked

Outline

Spreads widen. Reasons: market-makers face higher inventory risk, adverse selection risk (informed traders more likely active), uncertainty in fair value. Specific mechanisms: market-makers raise the spread to compensate for risk. Discuss the link to trading volume and the role of HFTs in providing liquidity. Be ready for follow-up: 'what does this mean for execution algorithms?'

Source: Glassdoor Hudson River Trading market microstructure round, 2026 ·

Implement a thread-safe singleton pattern in C++.

Occasionally asked

Outline

Modern C++: use a static local in a function. C++11 guarantees thread-safe initialization of function-local statics. Avoid double-checked locking unless using std::atomic with proper memory orderings. Discuss why naive double-checked locking is broken on weak memory models. Mention that pre-C++11 code in legacy systems still has this bug.

Source: Glassdoor Hudson River Trading systems round, 2026 ·

Hudson River Trading interview tips

  • Onsite often packed into a single day. Bring snacks and pace yourself — afternoon rounds matter as much as morning.
  • Mental math should be reflexive. Two-digit multiplication, percent conversions, log/exp shortcuts. Drill these for weeks before the loop.
  • Probability questions often have elegant symmetry or invariant tricks. Always pause to look for them before grinding algebra.
  • Market microstructure conversations are not optional. Read a basic intro to limit order books, market-makers vs takers, and the role of HFT before the onsite.
  • Python is fine for screens; C++ is preferred on the systems round if you list C++ on your resume. Be ready to discuss undefined behavior, RAII, and move semantics.

Frequently asked questions

How long is Hudson River Trading's quant interview process in 2026?

Most reports show 3-6 weeks from initial contact to offer. Compressed onsites mean decisions arrive fast — sometimes within 48 hours.

What is Hudson River Trading's size and headcount?

About 800 employees globally as of 2026, with major offices in New York, London, Mumbai, and Singapore. Small relative to Citadel or Two Sigma.

Does HRT sponsor visas for new-grad quant researchers?

Yes for H1-B, with standard lottery odds. F-1 OPT and STEM extensions are routinely supported. International candidates should confirm with their recruiter.

What is HRT's primary trading strategy?

High-frequency market-making and statistical arbitrage. The firm operates across equities, futures, and FX. Quant researchers work on signal generation and execution improvement.

Can I retake HRT's interview after rejection?

Yes, after a 12-month cooldown. The firm tracks interview notes per round; expect to discuss prior weaknesses.

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 →