Citadel Securities Interview Questions
15 real interview questions for Quant Researcher roles at Citadel Securities.
Showing 1–15 of 15 questions
You regress X1 against Y and obtain an R-squared value of 0.1. Then, you regress X2 against Y and obtain an R-squared value of 0.2. What is the maximum possible R-squared when regressing both X1 and X2 against Y together?
Given a string, return all possible permutations of its characters as a list. You may use recursive backtracking or any relevant Python packages.
Starting at the origin on a grid, you can move either up/down or left/right at each step. After N steps, how far can you be from the origin? Additionally, if there are two boundaries, what is the probability that you reach one boundary before the other?
If you toss a fair coin N times, what is the probability that you will get an even number of heads? Follow-up: Now, what if you have N - 1 fair coins, and the Nth coin is biased and lands on heads with probability p?
What happens if two features are highly collinear in Lasso regression?
Explain the basics of logistic regression.
What happens to the R-squared (R^2) value if you double the data in a regression analysis? What about the t-value?
We have n switches, each with probability p_i of being on and 1-p_i of being off. What is the probability that C or more switches are on? What if C is a uniform random variable between 0 and n?
Given an array representing the price of a stock on each day, and an integer k, determine the maximum profit you can achieve by completing at most k buy-sell transactions (you must sell before buying again).
Given n balloons, each balloon is painted with a number on it represented by an array nums. You are to burst all the balloons. If you burst balloon i, you get nums[left] * nums[i] * nums[right] coins. Here, left and right are adjacent indices of i. After the burst, the left and right balloons become adjacent. Find the maximum coins you can collect by bursting the balloons wisely.
Randomly generate points (x, y) on the circumference of a circle in two dimensions. What is Var(x)? What if you randomly generate points on the surface of a sphere instead?
In ridge regression, what happens to the expected value of the estimate if you perturb your data matrix?
What is the limit of x^x as x approaches 0?
What is the difference between ordinary least squares (OLS) regression and Ridge regression?
Implement a Python function to price an American option using backward induction.
Want the full solutions?
Get detailed walkthroughs for all 57+ Citadel Securities questions with Quant Blueprint.
Get Started