stats midterm 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/29

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 12:52 PM on 4/24/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

30 Terms

1
New cards

(uniform) height formula

1/b-a

2
New cards

p(a1 < x < a2) (for uniform)

= (a2-a1)/ (b-a)

3
New cards

p(x<6) (for uniform)

(6-a)(b-a)

4
New cards

E(x) (for uniform)

(a+b)/2

5
New cards

Var(x) (for uniform)

(b-a)²/2

6
New cards

cdf problem

  1. set integral = 1

  2. plug probabilities into integral (cdf)

  3. multiply integrals by x and again by x²

  4. var(x)= x solution - x² solution

7
New cards

exponential distribution

e(X)= 1 / λ

8
New cards

r command to exp dist

pexp(x, rate= λ)

9
New cards

gamma distribution

o²/u= B

10
New cards

gamma r command

pgamma(p, shape= a, scale= b)

11
New cards

standardize and find p r command

pnorm(x, mean(u), sd(o))

12
New cards

unstandardize and find x r command

qnorm(p, mean(u), sd(o))

13
New cards

empirical rule 68

u-o u u+o

14
New cards

standard normal

0 and 1

15
New cards

find c

qnorm(1- (1- 0.9) /2)

16
New cards

sample distrubution

pnorm(x, mean, sd/square root of n)

17
New cards

one sample t interval

estimating a mean, and if o is unknown and only know s,

find t then plug into formula

18
New cards

one sample t interval r command

qt( (1- a/2) , df (n-1))

19
New cards

one sample z interval

estimating mean, o is known

find z then plug in to E= z ((o)/sqrt of n)

20
New cards

one sample z interval r command

qnorm(1-a/2)

21
New cards

to find E in z or t interval

E= (t or z) x (s or o)/ square root of n

22
New cards

reverse t interval problem

when you get the interval, but no x or e, or s

x= sum/2

e= difference/2

e= t (s/ sqrt n)

23
New cards

proportion z interval

want a proportion, but no p or n

e= width/2

if no p, use: 0.5

n= (z/e)² p(1-p)

24
New cards

𝝀² interval for variance

var(c(…..))

𝝀²= o²/2

left= qchisq( 𝝀², df)

right= qchisq( 1- 𝝀², df)

then plug into formula right, o², then left

25
New cards

one sample z test for means

testing for mean, but o is known

find z through formula

find pval, with pnorm(z), if two tailed: 2 times pnorm)-abs(z))

26
New cards

one sample t test for means

testing for mean, but σ is unknown (only s given).

find t through formula.

find pval with pt(t, df=n-1). df = n−1.

27
New cards

one proportion z test

testing a proportion (p), not a mean.

p̂ = x/n.

find z through formula — denominator uses p₀ not p̂.

find pval with pnorm(z).

28
New cards

two sample t test for means

comparing means from two independent groups.

find t through formula.

find pval with pt(t, df) — df comes from Welch's formula (messy, usually given or use R).

29
New cards

paired t test for means

comparing means but same subjects measured twice (before/after, computer/manual).

compute differences D first, then it's just a one sample t test on D.

find t with D̄ and s_D.

find pval with pt(t, df=n-1) where n = number of pairs.

30
New cards

two proportion z test

comparing proportions from two independent groups.

p̂₁ = x₁/n₁, p̂₂ = x₂/n₂.

find z through formula. find pval with pnorm(z).

note: the denominator uses each group's own p̂, not a pooled p.