Solving an underdetermined system
A lot of firms will ask questions that are variations on the following: Suppose you have a $p$ -dimensional parameter $x$ you want to estimate, and you have...
A lot of firms will ask questions that are variations on the following: Suppose you have a $p$ -dimensional parameter $x$ you want to estimate, and you have...
We have $X \sim U[-2,2], Y \sim U[-1,1]$. If we apply rotation matrix
Without any package imports, how would you compute OLS?
I have recently been watching videos from Darcy O’Neil’s YouTube channel Art of Drink. In it, he goes through techniques for how to extract flavor compounds ...
This note explores the following quant interview question: if you are given a matrix $X \in \mathbb{R}^{n\times p}$ that you are told has colinearity, how wo...
We have $X, Y, Z$, where $Z \sim X$ has $R^2=.1$ and $Z \sim Y$ has $R^2=.2$. Bound the $R^2$ of $Z \sim X + Y$.
In a quant interview last year, I was asked a question about the tradeoff in changing the number of folds $k$ in $k$-fold cross-validation. Obviously, as the...
For a binary search tree (BST), if you are at node $A$, how would you find the lexicographically next node after $A$? That is, how would you find the smalle...
How do you find the top eigenvector of a square matrix?
What is the probability the sum of 6 dice rolls is a multiple of 6?
Solution This is just a basic question to query if you have basic familiarity with neural networks. You should mention techniques such as dropout,...
How to update mean and variance in a streaming way? By streaming we mean without retaining the individual samples, i.e. computing $\bar x_n$ from only $\bar...
You have points in 3D. How to find hyperplane that minimizes z-axis error? How to find hyperplane that minimizes orthogonal error? When would you prefer one ...
How would you programmatically check if an integer is a power of $2$?
What is OLS solution? How is it derived? How to compute with $n \gg p$, such that $X$ cannot be loaded in memory. Consider both when $p$ very small, but also...
Probability $X > 3Y$ when they are iid Gaussians.
If I draw 4 numbers without replacement from the first 16 primes, what is the probability the sum is even?
Suppose two players play a game alternating turns. Player 1 goes first and has 50% chance of winning in that round. Player 2 goes second (if P1 doesn’t win) ...
If we draw uniformly form the unit sphere, and call its coordinates $(X,Y,Z)$, what is the variance of $X$?
If $U_1, U_2 \overset{iid}{\sim} U[0,1]$, compute $Pr(U_1U_2 \le .5)$?
Let $X,Y$ be the outcomes of rolling two iid six-sided dies. Compute $\mathrm{Pr}(X+Y < XY)$.
Compute $\int_\pi^{2\pi} \sin x dx$.
Suppose you are going to be shown three iid uniform rv, $U_i \sim U[0,1]$. Your task is to after seeing $U_1$, assign it lowest, middle, or highest. Then see...
If $X_0=0$, and goes up or down one at each time step with equal probability, what is the probability $X$ hits $4$ before $X$ hits $-6$?
If $Y \sim X$ gives coefficient $\hat\beta$, what is the bound on the coefficient $\hat\theta$ from $X \sim Y$?
I like to eat pizza on weekends. $\mathrm{Pr}(\text{eat pizza Sat}) = .3$ and $\mathrm{Pr}(\text{eat pizza Sun}) = .4$. What is the probability that I will e...
How would you partition the square roots of the first 50 natural numbers $\sqrt 1, \sqrt 2, \dots, \sqrt{50}$ into two groups $A, B$, such that
Suppose we play a game where we flip a gold coin 500 times and a silver coin 500 times. We get 3 dollars per gold head, and 1 dollar per silver head, getting...
We have a sack with 60 balls: 30 yellow, 20 red, and 10 white. If we draw randomly from the sack w/o replacement until all are drawn, what is the probability...
If I have an 8 digit passcode, taking values $0-9$, what is the probability that a randomly generated passcode has exactly $5$ occurrences of the same digit?...
Suppose you run a bar that has 25 seats at the bar. Patrons will enter and seat themselves according to the following rules. They will not sit next to someon...
Fitness in general, and bodybuilding in particular, has become almost entirely a genre promoting poor health and worse values. What started as a purusit of h...
I was asked this in a quant research onsite interview. It is a question about estimating variances in a noisy autoregression setting.
This note comes from the following question: You have data $X, Y$ and you run a lasso-penalized linear regression of $Y$ onto $X$, with the lasso parameter t...