312 Test 2

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/30

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 1:55 AM on 4/15/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

31 Terms

1
New cards

B^ OLS

(XtX)^-1Xty

2
New cards

H matrix

X(XtX)^-1Xt

3
New cards

H matrix properties

symmetric + idempotent

4
New cards

Var(B^) OLS

sigma²[(XtX)^-1]

5
New cards

TSS

yTy - ny-bar²

6
New cards

SSreg

yTHy - ny-bar²

7
New cards

SSE

yT(I - H)y

8
New cards

R² formula

1 - SSE/TSS

9
New cards

simga-hat²

SSE/(n-p)

10
New cards

t-stat

B^j / se(B^j)

11
New cards

f-stat

SSreg/(p-1) / SSE/(n-p)

12
New cards

MSE

SSE/n-p

13
New cards

B^ dist

B^ ~ N(B, sigma²(XTX)-1)

14
New cards

confidence interval for B^j

B^j ± ta/2,n-p * se(B^j)

15
New cards

confidence interval for E[ynew]

y^new ± ta/2,n-p * simga^ sqrt(xnewT(XTX)^-1xnew)

16
New cards

prediction interval for ynew

y^new ± ta/2,n-p * simga^ sqrt(1 + xnewT(XTX)^-1xnew)

17
New cards

R²adj

1 - (SSE/(n-p) / TSS/(n-1))

18
New cards

AIC

nlog(MSE) + 2p + C

19
New cards

Cp formula

SSE/(simga-hat²) - n +2p

20
New cards

LOOCV shortcut

1/n sum ( ( (yi - yi^)/(1-hi) )² )

21
New cards

leverage

hi = Hii; how much the pt influences own prediction

22
New cards

flag for potential outliers

if hi > 2p/n

23
New cards

Var(ei^)

simga² (1 - hi)

24
New cards

standardized residual

ei^ / simga^ sqrt(1-hi) (approx follows standard normal)

25
New cards

studentized residual

ei^ / simga^(i) sqrt(1-hi) (follows tn-p-1)

26
New cards

cook’s distance

Di = ri²/p * hi/1-hi

27
New cards

minimized quantity for ridge

(y-XB)T(y-XB) + lambdaBTB

28
New cards

B^ridge

(XTX+lambda I)^-1 XTy

29
New cards

E[B^ridge]

(XTX + lambda I)^-1 XTXB

30
New cards

Var[B^ridge]

sigma²(XTX + lambda I)^-1 XTX(XTX+lambda I)^-1

31
New cards

spline formula

y^ = Bo^ + B1^X + B2^X² + B3^X³ + Sum(B3+k^(X-knot)³) +where (x- knot)³+ = (x-knot)³ if x > knot else 0