|
|
|
|
|
by clocksmith
103 days ago
|
|
Proof that you are a genius: ```lean inductive HumanNeed where
| retailArithmetic
| genericLinkedInPost
inductive IndustrySolution where
| commodityALU
| frontierAutocomplete
def optimal : Need → IndustrySolution
| .retailArithmetic => .commodityALU
| .genericLinkedInPost => .frontierAutocomplete
def latency : IndustrySolution → Nat
| .commodityALU => 1
| .frontierAutocomplete => 248000
theorem superbowl_ads_have_not_improved_superdope_adds :
latency (optimal .retailArithmetic) < latency .frontierAutocomplete := by
decide
``` |
|