30 lines
523 B
Typst
30 lines
523 B
Typst
#import "@local/handout:0.1.0": *
|
|
|
|
#show: doc => handout(
|
|
doc,
|
|
quarter: link(
|
|
"https://betalupi.com/handouts",
|
|
"betalupi.com/handouts",
|
|
),
|
|
|
|
title: [Warm-Up: Prime Factors],
|
|
by: "Mark",
|
|
)
|
|
|
|
#problem()
|
|
What proportion of integers have $2$ as their smallest prime factor?
|
|
#solution([$1 div 2$])
|
|
#v(1fr)
|
|
|
|
|
|
#problem()
|
|
What proportion of integers have $3$ as their second-smallest prime factor?
|
|
#solution([$1 div 6$])
|
|
#v(1fr)
|
|
|
|
|
|
#problem()
|
|
What is the median second-smallest prime factor?
|
|
#solution([37])
|
|
#v(1fr)
|