Class 30: Sex, Religion, and Politics

57
30: Sex, Religi on, and Politi cs cs1120 Fall 2011 David Evans 2 November 2011

description

Problems and ProceduresP=NP RecapEndless Golden AgesGolden CatastrophesOptimism

Transcript of Class 30: Sex, Religion, and Politics

Page 1: Class 30: Sex, Religion, and Politics

Class 30:Sex, Religion, and Politicscs1120 Fall 2011David Evans2 November 2011

Page 2: Class 30: Sex, Religion, and Politics

2

Plan

Recap big ideas from Monday (without Halloweenization)

Tyson’s Science’s Endless Golden Age

Page 3: Class 30: Sex, Religion, and Politics

3

What is a problem?

Page 4: Class 30: Sex, Religion, and Politics

4

Procedures vs. Problems

Procedure: a well-defined sequence of steps that can be executed mechanically (i.e., by a Turing Machine)

Problem: description of an input and desired output

Page 5: Class 30: Sex, Religion, and Politics

5

Example: FactoringFactoring Procedure Factoring Problem

Input: a number, n, that is a product of two primes numbers

Output: two prime numbers, p and q, such that pq = n

def factors(n): res = [] for d in range(2, n): if n % d == 0: res.append(d) return res

What is the running time of this factoring procedure?

What is the time complexity of the factoring problem?

Page 6: Class 30: Sex, Religion, and Politics

P=NP ?

P = set of all problems that can be solved by algorithms with running times in O(Nk) where N is the input size and k is any constant.

NP = set of all problems whose answer can be checked by algorithms with running times in O(Nk) where N is the input size and k is

any constant.

Page 7: Class 30: Sex, Religion, and Politics

What about factoring?

How hard is the factoring problem?Input: a number, nOutput: two integers > 1, p and q, such that pq = n

How hard is the CHECK-FACTORS problem?Input: p, q, n (three integers, all greater than 1)Output: true if n = pq, false otherwise

Page 8: Class 30: Sex, Religion, and Politics

ACM1: Beyond Cyberspace (2001)

Neil de Grasse Tyson: "Awash in Data, Awash in Discoveries: Defining the Golden Age of Science“

Alan Kay: "The Computer Revolution Hasn't Happened Yet" (Vice President and Disney Fellow, Walt Disney Imagineering)

Dean Kamen: "Engineering the Future Depends on Future Engineers" (President and Owner, DEKA Research & Development Corporation and Founder of FIRST)

Rice Hall Dedication Speaker!Friday, Nov 18, 3pm: “The Future Belongs to the Innovators”

Page 9: Class 30: Sex, Religion, and Politics

Science’s Endless Golden Age

Page 10: Class 30: Sex, Religion, and Politics

“If you’re going to use your computer to simulate some phenomenon in the universe, then it only becomes interesting if you change the scale of that phenomenon by at least a factor of 10. … For a 3D simulation, an increase by a factor of 10 in each of the three dimensions increases your volume by a factor of 1000.”

What is the asymptotic running time for simulating the universe?

Page 11: Class 30: Sex, Religion, and Politics

“If you’re going to use your computer to simulate some phenomenon in the universe, then it only becomes interesting if you change the scale of that phenomenon by at least a factor of 10. … For a 3D simulation, an increase by a factor of 10 in each of the three dimensions increases your volume by a factor of 1000.”

Page 12: Class 30: Sex, Religion, and Politics

Simulating the Universe

(n3)

When we double the scale of the simulation, the work octuples! (Just like oceanography octopi simulations)

Work scales linearly with volume of simulation: scales cubically with scale

Page 13: Class 30: Sex, Religion, and Politics

Orders of Growth

0

20

40

60

80

100

120

140

1 2 3 4 5

n3

n2

n

simulatinguniverse

Page 14: Class 30: Sex, Religion, and Politics

Orders of Growth

0

200000

400000

600000

800000

1000000

1200000

1400000

1 11 21 31 41 51 61 71 81 91 101

simulatinguniverse

Page 15: Class 30: Sex, Religion, and Politics

Orders of Growth

0

1E+32

2E+32

3E+32

4E+32

5E+32

6E+32

7E+32

1 11 21 31 41 51 61 71 81 91 101

simulatinguniverse

factors2n

Page 16: Class 30: Sex, Religion, and Politics

Astrophysics and Moore’s Law

Simulating universe is (n3)Moore’s “law”: computing power

doubles every 18 monthsDr. Tyson: to understand something

new about the universe, need to scale by 10x

How long does it take to know twice as much about the universe?

Page 17: Class 30: Sex, Religion, and Politics

Knowledge of the Universeimport math

# 18 months * 2 = 12 months * 3yearlyrate = math.pow(4, 1.0/3.0) # cube root

def simulation_work(scale): return scale ** 3

def knowledge_of_universe(scale): return math.log(scale, 10) # log base 10

def computing_power(nyears):

Page 18: Class 30: Sex, Religion, and Politics

Knowledge of the Universeimport math

# 18 months * 2 = 12 months * 3yearlyrate = math.pow(4, 1.0/3.0) # cube root

def simulation_work(scale): return scale ** 3

def knowledge_of_universe(scale): return math.log(scale, 10) # log base 10

def computing_power(nyears): if nyears == 0: return 1 else: return yearlyrate * computing_power(nyears - 1)

def computing_power(nyears): return yearlyrate ** nyears

Page 19: Class 30: Sex, Religion, and Politics

def computing_power(nyears): return yearlyrate ** nyears

def simulation_work(scale): return scale ** 3

def knowledge_of_universe(scale): return math.log(scale, 10) # log base 10

def relative_knowledge_of_universe(nyears): scale = 1 while simulation_work(scale + 1) <= 1000 * computing_power(nyears): scale = scale + 1 return knowledge_of_universe(scale)

Knowledge of the Universe

Page 20: Class 30: Sex, Religion, and Politics

While Loop

Statement ::= while Expression: Block

(define (while pred body) (if (pred) (begin (body) (while pred body))))

(define x 1)(define sum 0)(while (lambda () (< x 100)) (lambda () (set! sum (+ sum x)) (set! x (+ x 1))))

x = 1res = 0while x < 100: res = res + x x = x + 1print res

x = 1res = 0while x < 100: res = res + xprint res

Page 21: Class 30: Sex, Religion, and Politics

def computing_power(nyears): return yearlyrate ** nyears

def simulation_work(scale): return scale ** 3

def knowledge_of_universe(scale): return math.log(scale, 10) # log base 10

def relative_knowledge_of_universe(nyears): scale = 1 while simulation_work(scale + 1) <= 1000 * computing_power(nyears): scale = scale + 1 return knowledge_of_universe(scale)

Knowledge of the Universe

(Note: with a little bit of math, couldcompute this directly using a log instead.)

Page 22: Class 30: Sex, Religion, and Politics

> >>> relative_knowledge_of_universe(0)1.0>>> relative_knowledge_of_universe(1)1.0413926851582249>>> relative_knowledge_of_universe(2)1.1139433523068367>>> relative_knowledge_of_universe(10)1.6627578316815739>>> relative_knowledge_of_universe(15)2.0>>> relative_knowledge_of_universe(30)3.0064660422492313>>> relative_knowledge_of_universe(60)5.0137301937137719>>> relative_knowledge_of_universe(80)6.351644238569782

Will there be any mystery left in the Universe when you die?

Page 23: Class 30: Sex, Religion, and Politics

Only two things are infinite, the universe and human stupidity, and I'm not sure about the former.

Albert Einstein

Page 24: Class 30: Sex, Religion, and Politics

The Endless Golden Age

• Golden Age – period in which knowledge/quality of something improves exponentially

• At any point in history, half of what is known about astrophysics was discovered in the previous 15 years!– Moore’s law today, but other advances

previously: telescopes, photocopiers, clocks, agriculture, etc.

Accumulating 4% per year => doubling every 15 years!

Page 25: Class 30: Sex, Religion, and Politics

Endless/Short Golden Ages

Endless golden age: at any point in history, the amount known is twice what was known 15 years agoContinuous exponential growth: (kn)

k is some constant (e.g., 1.04), n is number of years

Short golden age: knowledge doubles during a short, “golden” period, but only improves linearly most of the timeMostly linear growth: (n)

n is number of years

Page 26: Class 30: Sex, Religion, and Politics

19301938

19541962

19701978

19861994

20022010

2

3

4

5

6Av

erag

e G

oals

per

Gam

e, F

IFA

Wor

ld C

ups

Changed goalkeeperpassback rule

Goal-den age

Page 27: Class 30: Sex, Religion, and Politics

27

Page 28: Class 30: Sex, Religion, and Politics

Computing Power 1969-2011(in Apollo Control Computer Units)

1969

1972

1975

1978

1981

1984

1987

1990

1993

1996

1999

2002

2005

2008

2011

0

50,000,000

100,000,000

150,000,000

200,000,000

250,000,000

300,000,000

Page 29: Class 30: Sex, Religion, and Politics

0

2,000

4,000

6,000

8,000

10,000

12,000

14,000

16,000

18,000

Computing Power 1969-1990(in Apollo Control Computer Units)

Page 30: Class 30: Sex, Religion, and Politics

Computing Power 2008-2050?

2008

2009.52011

2012.52014

2015.52017

2018.52020

2021.52023

2024.52026

2027.52029

2030.52032

2033.52035

2036.52038

2039.52041

2042.52044

2045.52047

2048.52050

0

50,000

100,000

150,000

200,000

250,000

300,000

350,000

400,000

450,000

2011 = 1 computing unit

Human brain:~100 Billion neurons100 Trillion connections

Brain simulator today (IBM Blue Brain):10,000 neurons30 Million connections

30 years from now

?!

“There’s an unwritten rule in astrophysics: your computer simulation must end before you die.”

Neil deGrasse Tyson

Page 31: Class 30: Sex, Religion, and Politics

More Moore’s Law?

An analysis of the history of technology shows that technological change is exponential, contrary to the common-sense 'intuitive linear' view. So we won't experience 100 years of progress in the 21st century-it will be more like 20,000 years of progress (at today’s rate). The 'returns,' such as chip speed and cost-effectiveness, also increase exponentially. There’s even exponential growth in the rate of exponential growth. Within a few decades, machine intelligence will surpass human intelligence, leading to the Singularity — technological change so rapid and profound it represents a rupture in the fabric of human history. The implications include the merger of biological and non-biological intelligence, immortal software-based humans, and ultra-high levels of intelligence that expand outward in the universe at the speed of light.

Ray Kurzweil

“Any physical quantity that’s growing exponentially predicts a disaster, you simply can’t go beyond certain major limits.”Gordon Moore (2007)

Current technologies are alreadyslowing down...

but advances won’t come from more transistors with current technologies...new technologies, algorithms, parallelization, architectures, etc.

Page 32: Class 30: Sex, Religion, and Politics

32

Log

scal

e: st

raig

ht li

ne =

exp

onen

tial c

urve

!

Page 33: Class 30: Sex, Religion, and Politics

The Real Golden Rule?Why do fields like astrophysics, medicine, biology and computer science have “endless golden ages”, but fields like– music (1775-1825)– rock n’ roll (1962-1973)*– philosophy (400BC-350BC?)– art (1875-1925?)– soccer (1950-1966)– baseball (1925-1950?)– movies (1920-1940?)

– have short golden ages? * or whatever was popular when you were 16.

Page 34: Class 30: Sex, Religion, and Politics

Golden Agesor

Golden Catastrophes?

Page 35: Class 30: Sex, Religion, and Politics

PS5, Question 1e

Question 1: For each f and g pair below, argue convincingly whether or not g is (1) O(f), (2) Ω(f), and (3) Θ(g) …

(e) g: the federal debt n years from today, f: the US population n years from today

Page 36: Class 30: Sex, Religion, and Politics

Malthusian CatastropheReverend Thomas Robert Malthus, Essay on the Principle of Population, 1798

Page 37: Class 30: Sex, Religion, and Politics

37

Page 38: Class 30: Sex, Religion, and Politics

Malthusian Catastrophe

“The great and unlooked for discoveries that have taken place of late years in natural philosophy, the increasing diffusion of general knowledge from the extension of the art of printing, the ardent and unshackled spirit of inquiry that prevails throughout the lettered and even unlettered world, … have all concurred to lead many able men into the opinion that we were touching on a period big with the most important changes, changes that would in some measure be decisive of the future fate of mankind.”

Page 39: Class 30: Sex, Religion, and Politics

Malthus’ Postulates “I think I may fairly make two postulata.

First, that food is necessary to the existence of man.

Secondly, that the passion between the sexes is necessary and will remain nearly in its present state.

These two laws, ever since we have had any knowledge of mankind, appear to have been fixed laws of our nature, and, as we have not hitherto seen any alteration in them, we have no right to conclude that they will ever cease to be what they now are…”

Page 40: Class 30: Sex, Religion, and Politics

Malthus’ Conclusion“Assuming then my postulata as granted, I say, that the power of population is indefinitely greater than the power in the earth to produce subsistence for man. Population, when unchecked, increases in a geometrical ratio. Subsistence increases only in an arithmetical ratio. A slight acquaintance with numbers will show the immensity of the first power in comparison of the second.”

Page 41: Class 30: Sex, Religion, and Politics

Malthusian Catastrophe

• Population growth is geometric: (kn) (k > 1)• Food supply growth is linear: (n)

What does this mean as n?

Food per person = food supply / population = (n) / (kn)As n approaches infinity, food per person approaches zero!

Page 42: Class 30: Sex, Religion, and Politics

Malthus’ Fallacy?

Page 43: Class 30: Sex, Religion, and Politics

Malthus’ FallacyHe forgot how he started:

“The great and unlooked for discoveries that have taken place of late years in natural philosophy, the increasing diffusion of general knowledge from the extension of the art of printing, the ardent and unshackled spirit of inquiry that prevails throughout the lettered and even unlettered world…”

Page 44: Class 30: Sex, Religion, and Politics

Golden Age of Food ProductionAgriculture is an “endless golden age” field: production from the same land increases as ~ (1.02n)

Increasing knowledge of farming, weather forecasting, plant domestication, genetic engineering, pest repellants, distribution channels, preservatives, etc.

Page 45: Class 30: Sex, Religion, and Politics

Growing Corn

2006: 10,000 pounds per acre

Michael Pollan’s The Omnivore’s Dilemma

1906: < 1,000 pounds per acre

Page 46: Class 30: Sex, Religion, and Politics

Corn YieldN

ote:

Log

axi

s!

http://www.agbioforum.org/v2n1/v2n1a10-ruttan.htm

Page 47: Class 30: Sex, Religion, and Politics

47

Page 48: Class 30: Sex, Religion, and Politics

Green Revolution

Norman Borlaug (1914-2009)

Page 49: Class 30: Sex, Religion, and Politics

“At a time when doom-sayers were hopping around saying everyone was going to starve, Norman was working. He moved to Mexico and lived among the people there until he figured out how to improve the output of the farmers. So that saved a million lives. Then he packed up his family and moved to India, where in spite of a war with Pakistan, he managed to introduce new wheat strains that quadrupled their food output. So that saved another million. You get it? But he wasn't done. He did the same thing with a new rice in China. He's doing the same thing in Africa -- as much of Africa as he's allowed to visit. When he won the Nobel Prize in 1970, they said he had saved a billion people. That's BILLION! BUH! That's Carl Sagan BILLION with a "B"! And most of them were a different race from him. Norman is the greatest human being, and you probably never heard of him.”

Penn Jillette (Penn & Teller)

Page 50: Class 30: Sex, Religion, and Politics

Malthus was wrong about #2 Also

Advances in science (birth control), medicine (higher life expectancy), education, and societal and political changes (e.g., regulation in China) have reduced k (it is < 1 in many countries now!)

Page 51: Class 30: Sex, Religion, and Politics

Upcoming Malthusian Catastrophes?

• Human consumption of fossil fuels grows as (kn) (fairly large k like 1.08?)

• Available fuel is constant (?)

http://wwwwp.mext.go.jp/hakusyo/book/hpag200001/hpag200001_2_006.html

Page 52: Class 30: Sex, Religion, and Politics

PS4, Question 1e g: the federal debt n years from today, f: the US population n years from today

Debt increases: Spending – Revenues

this varies, but usually positive+ Interest on the previous debt (exponential)

= (kn)Population increase is not exponential: rate continues to decrease

=> as n increases, debt per person approaches infinity!

This will eventually be a problem, but growth analysis doesn’t say when.

Page 53: Class 30: Sex, Religion, and Politics

“Cornucopian View”

Few resources are really finiteAll scientific things have endless golden ages

Knowledge accumulatesKnowledge makes it easier to acquire more

(We hope) Human ingenuity and economics and politics will continue solve problems before they become catastrophes

No one will sell the last gallon of gas for $3.35

Page 54: Class 30: Sex, Religion, and Politics

54

“Today, of Americans officially designated as ‘poor’, 99 percent have electricity, running water, flush toilets, and a refrigerator; 95 percent have a television, 88 percent a telephone, 71 percent a car and 70 percent air conditioning. Cornelius Vanderbilt had none of these.” Matt Ridley

Page 55: Class 30: Sex, Religion, and Politics

55

America will always do the right thingbut only after exhausting all other options.

Charles Vest’s slide idea!

Winston Churchill

Page 56: Class 30: Sex, Religion, and Politics

“Kay”-sian View

The best way to predict the future is to invent it.

— Alan Kay

Page 57: Class 30: Sex, Religion, and Politics

Charge• When picking majors:• Pick a short golden age field that is about to

enter its short golden age: this requires vision and luck!

• Or, play it safe by picking an endless golden age field (CS is a good choice for this!)

• Friday: • Python Dictionaries• History of Object-Oriented Programming