Quant Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

Machine Learning

A

Gives a computer the ability to improve its performance of a task over time

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

t-test for r (correlation)

A

(n-2 df)

t = r*sqrt(n-2)/sqrt(1-r^2)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Estimated slope coefficient - least squares

A

cov (xy) / var (x)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Confidence interval for predicted Y-value

A

y = +- tc * SE of forecast

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

SST, MSR, MSE formulas

A
SST = RSS + SSE
MSR = RSS/k
MSE = SSE/(n-k-1)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Test statistical significant of regression

A

F = MSR / MSE with k and n-k-1 df (1-tail)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

SSE

A

SSE = sqrt(MSE)

Smaller SSE = better fit

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Coefficient of Determination

A

R^2 = RSS / SST

% variability of Y explained by Xs; higher R^2 = better fit

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Heteroskedasticity

A

Non constant error variance
Detect with Breuch-Pagan test
Correct with White-corrected standard errors

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Autocorrelation

A

Correlation among error terms
Detect with durbin-watson test -> positive autocorrelation if DW < dl
Correct by adjusting standard errors using Hansen method

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Multicollinearity

A

High correlation between X’s
Detect if F-test significant, t-test insignificant
Correct by dropping X variables

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Model Misspecification

A

Omitting a variable
Variable should be transformed
Incorrectly pooling data
Using lagged dependent variable as independent variable
Forecasting the past
Measuring independent variables with error

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Effects of Misspecification

A
  1. Regression coefficients are biased and inconsistent

2. Lack of confidence in hypothesis tests of the coefficients or the model predictions

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Supervised machine learning

A

inputs and outputs are identified

relationships modeled from labeled data

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Unsupervised machine learning

A

Algorithm itself seeks to describe the structure of unlabeled data

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Covariance stationary

A

mean and variance doesn’t change over time
To determine if a time series is covariance stationary,
1. plot data
2. run an AR model and test correlations
3. Perform Dickey-Fuller test

17
Q

Unit root

A

coefficient on lagged dependent variable = 1. Series with unit root is not covariance stationary. First differencing will often eliminating the unit root

18
Q

mean reverting level for AR(1)

A

b0/(1-b1)

19
Q

RSME

A

square root of average squared error

20
Q

Random walk time series

A

xt = x(t-1) + error(t)

21
Q

Seasonality

A

indicated by statistically significant lagged error term. correct by adding lagged term

22
Q

ARCH

A

detected by estimating:

e^2(t) = a0 + a1*e^2(t-1) + mean(t)

23
Q

Variance of ARCH series

A

sigma^2(t+1) = ^a0 + ^a1*e(t)^2

24
Q

Risk types

A

simulations
distribution of risk: continuous
sequential: does not matter
accommodates correlated variables? Yes

scenario analysis
distribution of risk: discrete
sequential: no
accommodates correlated variables? Yes

Decision Trees
distribution of risk: discrete
sequential: yes
accommodates correlated variables? no