To help you guys prepare, I’ve collected some recent quant interview questions people have had from various companies:
- Multiple linear regression model that you’re training. To tune it, you resample the training data with added Gaussian noise to help regularize your parameters. Assuming your initial training set is large enough, how does adding additional noise affect your parameters’ confidence intervals? (DRW)
- Postal office has 3 employees helping people ship off packages. Suppose the time between people arriving at the 1st, 2nd, 3rd employees’ desk is random and follows exponential distribution with lambda=3, 4, and 8 minutes, respectively. The 1st, 2nd, 3rd employees have a probability of 1/4, 1/6, 1/9 of referring the service to the supervisors. Let M/N = average time in minutes between customers referred to the supervisor, where the greatest common divisor gcd(M,N) =1. M+N = ? (DRW)
- 3% of a country’s population has a disease. The NIH has developed a test for the disease: the test has a 98% “true positive” rate (the probability a person will test positive given they have the disease). It also has a 4% “false positive” rate (the probability a person will test positive given that they don’t have the disease). If you simultaneously take the test twice and it comes out with two positive results, what is the probability you have the disease, assuming the two tests are independent? (DRW)
- You have imprisoned 10 pirates and you randomly put a red or blue hat on each pirate. They can see other people’s hats but not their own. You make each pirate guess what color hat he’s wearing. If everyone gets it right, they’re free to go but if at least one person gets it wrong, they’re sentenced to die. How should the pirates guess to maximise the probability of getting released? (Two Sigma)
- Joint probability: f_{X, Y} (x, y) = \frac{3}{2} x^2 + 2xy,0 <= x <= 1,0 <= y <= 1,P(Y <= X) = ? (Akuna)
- A and B are two 7x7 matrices. Rank(A) = 4, rank(B) = 5,what’s the smallest value rank(AB) can be? (Akuna)
- E(e^{tX}) = \frac{1}{1-t^2},Var(X) = ? (Akuna)
- What to do if a model works very well on training but poorly on testing? (Citadel)
- If an additional feature gets added to the data, how will PCA results change? (Citadel)
- For PCA, what’s the difference between doing eigenvalue decomposition on the correlation matrix vs the covariance matrix? How does eigenvalue decomposition help you get the principal components? (Goldman Sachs)