Appendix A Objectives Mapping

Size: px
Start display at page:

Download "Appendix A Objectives Mapping"

Transcription

1 Appendix A Objectives Mapping (for CGS 2060) Ken Christensen christen@cse.usf.edu

2 CGS Mapping of New Objectives to Old Objectives Obj. 1 Obj. 2 Obj. 3 Obj. 4 Obj. 5 Obj. 6 Obj. 12 a b c d e f g h Obj. 10 Obj. 11 a b c d e f g NEW Objective 1 X X NEW Objective 2 X X X X X NEW Objective 3 X X X X X X X X X NEW Objective 4 X X X NEW Objective 5 X NEW Objective 6 X NEW Objective 7 NEW Objective 8 X X X X X X X X X X X Obj. 7 Obj. 8 Obj. 9 Notes: 1. Rows are the new course objectives. 2. Columns are the old course objectives. 3. An "X" means that the old objective (column) is covered by the new objective (row). 4. Some of the old objectives (for instance objective 1, 6c, 6d, 8, etc.) are partially covered by a few individual new objectives, but are completely covered by the combination of those new objectives. 5. Objective 9 (file storage and retreival) and some elements of Objective 12 (ethics, e-commerce, LAN and WAN, etc.) is not covered by the new design.

3 Appendix B Outcomes Mapping (for CGS 2060) Ken Christensen christen@cse.usf.edu

4 CGS Mapping of New Outcomes to Old Outcomes Outcomes a b NEW Outcome 1 X X X X X X NEW Outcome 2 X X X X X X X NEW Outcome 3 X X X X X X X X X X X NEW Outcome 4 X X X NEW Outcome 5 NEW Outcome 6 X NEW Outcome 7 X X NEW Outcome 8 X X X X X X X X X Notes: 1. Rows are the new course outcomes. 2. Columns are the old course outcomes. 3. An "X" means that the old outcome (column) is covered by the new outcome (row). 4. Some of the old outcomes (for instance outcome 1, 22, etc.) are partially covered by a few individual new outcomes, but are completely covered by the combination of those new outcomes. 5. Outcome 21 (dealing with files), 24 (recursion), 25 (ethics), 26 (Internet), 27 (e-commerce), 31 (shareware), 35 (LAN and WAN), 36 (computer security), and 37 (privacy) are not covered by the new design. Only the concept and function of Bubble Sort is covered; the implementation is not, as it would need nested loops.

5 Appendix C Critical Thinking Assignment (for CGS 2060) Ken Christensen christen@cse.usf.edu

6 Week 11 Homework CGS Introduction to Computer Programming 2 November 2011 For this assignment you will investigate math concepts through a hands-on project where you will work with other students to reflect on the results from the program that you will develop and use to generate results. Assignment You are to develop a program that takes as input a starting salary, the yearly raise as a percentage of salary, and total number of years to work (that is, the length of your career before retirement). The output from your program should be the total amount of money earned at the start of your retirement. Once you have developed the program you are to work with other students to explore the effects of different starting salaries, raises, and career length. Would you rather have a higher starting salary and a lower yearly raise? If so, by how much? What would your salary and yearly raise have to be you want to retire with $10 million earned at the end of 30 years? What is the long-term effect of starting a career in a recession when starting salaries are lower? This program should allow the student the opportunity to reflect on career choices, the impact of recessions on long-term earnings, and many other real world aspects of working and earning a salary. Maps to course objectives 2, 3, 4, 5, and 6. 1

7 Appendix D Quantitative Literacy Assignment (for CGS 2060) Ken Christensen christen@cse.usf.edu

8 Week 13 Homework CGS Introduction to Computer Programming 16 November 2011 For this assignment you will analyze, organize, and interpret a natural phenomenon (that of the size of planets in the solar system and the effect of mass and size on gravitational pull) using the quantitative methods learned in this class centered on computer programming. Assignment You are to develop a program that accepts the name of a planet (for instance, Mars ) and returns the ratio between the force of gravity on that planet and on Earth. For instance, for Mars, the result should be that objects weigh approximately 0.38 times as much as they do on Earth. Also, the program should accept a weight of an object in pounds (on Earth) and return the weight of that object on the other planet. Interpret the results in terms of the mass and radius of the planet. Create your own planets with different masses and radii to see how the gravity changes. At minimum, you need to use a function to calculate the force of gravity, given a planet s radius and mass. The names, masses and radii of the planets can be hard coded into your program. When you turn in your solution, turn in the program you wrote and a brief report containing your procedure and conclusions. Maps to objectives 2, 3, 4, 5, 6, 7, and 8. 1

9 Hints Before you begin, read about gravity on other planets. A good place to start is: Gravity is proportional to the mass of the planet and the distance from the center. The surface gravity of a planet is: F g = G M r 2 where G is the universal constant of gravitation: G = N (m/kg) 2, and mass is in kilograms and radius is in meters. However, you do not need to use that formula directly; instead, you can compute the ratio directly: g p g e = m p m e ( ) 2 re where g p is the force of gravity on a planet, m p is the mass of that planet, and r p is the radius of that planet, and g e, m e, and r e are the same values for Earth. The easiest way to store the information about the planets in Python, at this level, is parallel lists. You should have one list with the names, one with the masses, and one with the radii, where the same index in each list refers to the same planet. (There are other methods, including lists of tuples and dictionaries, but we haven t learned about tuples or dictionaries yet.) You can represent a large number in Python in scientific notation this way: 1.23e45 is the Python representation for r p 2

10 Appendix E Scientific Process Assignment (for CGS 2060) Ken Christensen christen@cse.usf.edu

11 Week 14 Homework A CGS Introduction to Computer Programming 23 November 2011 The scientific method is one of the major achievements of modern civilization. The scientific method entails making systematic observations, creating a hypothesis, and then conducting experiments to test the hypothesis. For this assignment you will apply the scientific method to determine what a computer program does. Assignment You are given the following Python program. What does this program output? Execute it, observe and analyze the output, and construct a hypothesis as to what the program does. (That is, exactly what output does it generate?). Then explain how you would verify your hypothesis. import sys ITERATIONS = 100 a = c = m = 2**32 def getnext(xi): xi = (a*xi + c) % m return xi print("enter a number between 0 and ", m, ":", sep="") seed = eval(input("> ")) for i in range(iterations): seed = getnext(seed) print(seed) Maps to objectives 2, 3, 6, and 7. 1

Newton's Law of Universal Gravitation

Newton's Law of Universal Gravitation Section 2.17: Newton's Law of Universal Gravitation Gravity is an attractive force that exists between all objects that have mass. It is the force that keeps us stuck to the earth and the moon orbiting

More information

Key Points: Learn the relationship between gravitational attractive force, mass and distance. Understand that gravity can act as a centripetal force.

Key Points: Learn the relationship between gravitational attractive force, mass and distance. Understand that gravity can act as a centripetal force. Lesson 9: Universal Gravitation and Circular Motion Key Points: Learn the relationship between gravitational attractive force, mass and distance. Understand that gravity can act as a centripetal force.

More information

a. Do you think the function is linear or non-linear? Explain using what you know about powers of variables.

a. Do you think the function is linear or non-linear? Explain using what you know about powers of variables. 8.5.8 Lesson Date: Graphs of Non-Linear Functions Student Objectives I can examine the average rate of change for non-linear functions and learn that they do not have a constant rate of change. I can determine

More information

Patterns in the Solar System (Chapter 18)

Patterns in the Solar System (Chapter 18) GEOLOGY 306 Laboratory Instructor: TERRY J. BOROUGHS NAME: Patterns in the Solar System (Chapter 18) For this assignment you will require: a calculator, colored pencils, a metric ruler, and meter stick.

More information

Gravity Investigation

Gravity Investigation Gravity Investigation Name: Learning Target #14: I am able to use evidence to support the claim that gravitational interactions are attractive and depend on the masses of objects. From acorns to apples,

More information

WELCOME TO 1103 PERIOD 6

WELCOME TO 1103 PERIOD 6 WELCOE TO 1103 PERIOD 6 Homework Exercise #5 is due today. Please watch video 2, America Revealed: Electric Nation, for class discussion one week from today. PHYSICS 1103 PERIOD 6 Where is the center of

More information

Model Direct Variation. You wrote and graphed linear equations. You will write and graph direct variation equations.

Model Direct Variation. You wrote and graphed linear equations. You will write and graph direct variation equations. 2.5 Model Direct Variation a.3, 2A.1.B, TEKS 2A.10.G Before Now You wrote and graphed linear equations. You will write and graph direct variation equations. Why? So you can model animal migration, as in

More information

Science Unit Test Grade: 8 Unit 6: Gravity

Science Unit Test Grade: 8 Unit 6: Gravity Science Unit Test Grade: 8 Unit 6: Gravity Name Date 1. Which of these is best used to measure weight in newtons? a. Spring scale b. Triple beam balance c. Double pan balance d. Simple lever 2. Which of

More information

2 The Way Science Works

2 The Way Science Works CHAPTER 1 Introduction to Science 2 The Way Science Works SECTION KEY IDEAS As you read this section, keep these questions in mind: How can you use critical thinking to solve problems? What are scientific

More information

Operations in Scientific Notation

Operations in Scientific Notation .7 Operations in Scientific Notation How can you perform operations with numbers written in scientific notation? 1 ACTIVITY: Adding Numbers in Scientific Notation Work with a partner. Consider the numbers

More information

Matrix multiplications that do row operations

Matrix multiplications that do row operations May 6, 204 Matrix multiplications that do row operations page Matrix multiplications that do row operations Introduction We have yet to justify our method for finding inverse matrices using row operations:

More information

February 22/23, Week # 7 NB-118 Learning Target: I will Define force and identify the correct units. Identify the types of friction

February 22/23, Week # 7 NB-118 Learning Target: I will Define force and identify the correct units. Identify the types of friction February 22/23, Week # 7 NB-118 Learning Target: I will Define force and identify the correct units. Identify the types of friction Homework: Experiment Design Essential Question: Why is friction a force?

More information

Patterns in the Solar System (Chapter 18)

Patterns in the Solar System (Chapter 18) GEOLOGY 306 Laboratory Instructor: TERRY J. BOROUGHS NAME: Patterns in the Solar System (Chapter 18) For this assignment you will require: a calculator, colored pencils, a metric ruler, and meter stick.

More information

Reference Guide. Science Reference 9/25/ Copyright 1996 Gary Lewis Revisions 2007 by John Pratte

Reference Guide. Science Reference 9/25/ Copyright 1996 Gary Lewis Revisions 2007 by John Pratte Reference Guide Contents...1 1. General Scientific Terminology...2 2. Types of Errors...3 3. Scientific Notation...4 4. Significant Figures...6 5. Graphs...7 6. Making Measurements...8 7. Units...9 8.

More information

The Gravity of the Situation. PTYS Mar 2008

The Gravity of the Situation. PTYS Mar 2008 The Gravity of the Situation PTYS206-2 4 Mar 2008 Upcoming Events Exam 1 next Tuesday, March 11. Essays due next Thursday, March 13. Review session, Thursday, March 6. New Homework will be posted today,

More information

CS1210 Lecture 23 March 8, 2019

CS1210 Lecture 23 March 8, 2019 CS1210 Lecture 23 March 8, 2019 HW5 due today In-discussion exams next week Optional homework assignment next week can be used to replace a score from among HW 1 3. Will be posted some time before Monday

More information

Center of Mass, Improper Integrals

Center of Mass, Improper Integrals Unit #14 : Center of Mass, Improper Integrals Goals: Apply the slicing integral approach to computing more complex totals calculations, including center of mass. Learn how to evaluate integrals involving

More information

they do on Earth so the scientists can predict gravity forces in between the two planets. C. There is no gravity force in the space between

they do on Earth so the scientists can predict gravity forces in between the two planets. C. There is no gravity force in the space between Miscellaneous 1. Scientists use Newton s law of universal gravitation to send probes from Earth to Mars. Which statement best explains why this works? A. Earth and Mars have about the same mass so the

More information

APPLICATIONS OF INTEGRATION

APPLICATIONS OF INTEGRATION 6 APPLICATIONS OF INTEGRATION APPLICATIONS OF INTEGRATION 6.4 Work In this section, we will learn about: Applying integration to calculate the amount of work done in performing a certain physical task.

More information

Homework 1 Solutions

Homework 1 Solutions CS3510 Design & Analysis of Algorithms Section A Homework 1 Solutions Released 4pm Friday Sep 8, 2017 This homework has a total of 4 problems on 4 pages. Solutions should be submitted to GradeScope before

More information

Math 10 Lesson 1-7 Negative Exponents/Reciprocals

Math 10 Lesson 1-7 Negative Exponents/Reciprocals Math 0 Lesson -7 Negative Exponents/Reciprocals I. Negative exponents Consider the table to the right. Notice the patterns that emerge. As we decrease the power of from to to to, we eventually have a power

More information

Alignment of Oregon Science Standards

Alignment of Oregon Science Standards Alignment of Oregon cience tandards Crosswalk of 2009 Oregon cience tandards to 2014 Oregon cience tandards (ext Generation cience tandards) Alignment of Oregon cience tandards 2014 cience tandards (ext

More information

Georgia Performance Standards Framework for Earth and Moon dancing with our Star 6 TH GRADE

Georgia Performance Standards Framework for Earth and Moon dancing with our Star 6 TH GRADE One Stop Shop For Educators The following instructional plan is part of a GaDOE collection of Unit Frameworks, Performance Tasks, examples of Student Work, and Teacher Commentary. Many more GaDOE approved

More information

Math 1120 Solutions to Review for the Third Exam Spring 2011

Math 1120 Solutions to Review for the Third Exam Spring 2011 Math 20 Solutions to Review for the Third Exam Spring 20. Calculate the mean, median and mode for each of the following data sets. (a) 4, 8, 3, 3, 5, 3, 5, 7,, 9, 0, 2 First, order the set: 0,, 2, 3, 3,

More information

Name Student Activity

Name Student Activity Open the TI-Nspire document Treasure_Trove.tns. Imagine digging for buried treasure and finding thousands of. This amount of treasure might weigh much more than you could carry! In this activity, you will

More information

Worksheet 1: Integrators

Worksheet 1: Integrators Simulation Methods in Physics I WS 2014/2015 Worksheet 1: Integrators Olaf Lenz Alexander Schlaich Stefan Kesselheim Florian Fahrenberger Peter Košovan October 22, 2014 Institute for Computational Physics,

More information

HW and Exam #1. HW#3 Chap. 5 Concept: 22, Problems: 2, 4 Chap. 6 Concept: 18, Problems: 2, 6

HW and Exam #1. HW#3 Chap. 5 Concept: 22, Problems: 2, 4 Chap. 6 Concept: 18, Problems: 2, 6 HW and Exam #1 HW#3 Chap. 5 Concept: 22, Problems: 2, 4 Chap. 6 Concept: 18, Problems: 2, 6 Hour Exam I, Wednesday Sep 29, in-class Material from Chapters 1,3,4,5,6 One page of notes (8.5 x 11 ) allowed

More information

Math: Question 1 A. 4 B. 5 C. 6 D. 7

Math: Question 1 A. 4 B. 5 C. 6 D. 7 Math: Question 1 Abigail can read 200 words in one minute. If she were to read at this rate for 30 minutes each day, how many days would Abigail take to read 30,000 words of a book? A. 4 B. 5 C. 6 D. 7

More information

Grade 8. Functions 8.F.1-3. Student Pages

Grade 8. Functions 8.F.1-3. Student Pages THE NEWARK PUBLIC SCHOOLS THE OFFICE OF MATHEMATICS Grade 8 Functions 8.F.1-3 Student Pages 2012 2012 COMMON CORE CORE STATE STATE STANDARDS ALIGNED ALIGNED MODULES Grade 8 - Lesson 1 Introductory Task

More information

2.3 Solving Absolute Value Inequalities

2.3 Solving Absolute Value Inequalities Name Class Date.3 Solving Absolute Value Inequalities Essential Question: What are two was to solve an absolute value inequalit? Resource Locker Eplore Visualizing the Solution Set of an Absolute Value

More information

Exercise Sketch these lines and find their intersection.

Exercise Sketch these lines and find their intersection. These are brief notes for the lecture on Friday August 21, 2009: they are not complete, but they are a guide to what I want to say today. They are not guaranteed to be correct. 1. Solving systems of linear

More information

CLICKERS!!!!! Multiply.

CLICKERS!!!!! Multiply. CLICKERS!!!!! Multiply. 1. 95 x 10 6 2. 8.23 x 10 5 3. 864 x 10-5 4. 7.8 x 10-3 5. 5 x 10 8 6. 1.5 x 10 9 7. 54 x 10-3 8. 6.7 x 10-4 CLICKERS!!!!! Multiply. 1. 95 x 10 6 2. 8.23 x 10 5 3. 864 x 10-5 4.

More information

KNOWLEDGE TO GET FROM TODAY S CLASS MEETING

KNOWLEDGE TO GET FROM TODAY S CLASS MEETING KNOWLEDGE TO GET FROM TODAY S CLASS MEETING Class Meeting #5, Friday, January 29 th, 2016 1) GRAVITY: (text pages 111-112, 123) 2) Isaac Newton s LAWS of MOTION (briefly) (text pages 115-117) 3) Distances

More information

NGSS UNIT OVERVIEW SOLAR SYSTEM AND BEYOND

NGSS UNIT OVERVIEW SOLAR SYSTEM AND BEYOND NGSS UNIT OVERVIEW SOLAR SYSTEM AND BEYOND Performance Expectation MS-ESS1-1: Develop and use a model of the Earth-sun-moon system to describe the cyclic patterns of lunar phases, eclipses of the sun and

More information

Welcome to Physics 40!

Welcome to Physics 40! Welcome to Physics 40! Physics 40: Mechanics Kinematics: The physics of motion Newton s Three Laws of Motion Energy: Kinetic and Potential Linear & Angular Momentum Conservation Laws Newton s Universal

More information

[02] Quantitative Reasoning in Astronomy (8/31/17)

[02] Quantitative Reasoning in Astronomy (8/31/17) 1 [02] Quantitative Reasoning in Astronomy (8/31/17) Upcoming Items 1. Read Chapter 2.1 by next lecture. As always, I recommend that you do the self-study quizzes in MasteringAstronomy 2. Homework #1 due

More information

Gravity and Orbits Activity Page 1. Name: Grade: Gravity and Orbits. Pre-lab. 1. In the picture below, draw how you think Earth moves.

Gravity and Orbits Activity Page 1. Name: Grade: Gravity and Orbits. Pre-lab. 1. In the picture below, draw how you think Earth moves. Name: Grade: Gravity and Orbits Pre-lab 1. In the picture below, draw how you think Earth moves. 2. Draw a picture using arrows to show what you think the forces might be on the Earth and the Sun. You

More information

Figure 1: Qualitative Observations How do you measure artistic beauty?

Figure 1: Qualitative Observations How do you measure artistic beauty? 2.1 Physical quantities and units Quantitative versus qualitative Most observation in physics are quantitative Descriptive observations (or qualitative) are usually imprecise Figure 1: Qualitative Observations

More information

Gravity and Orbits. 1. Choose the picture you think shows the gravity forces on the Earth and the Sun.

Gravity and Orbits. 1. Choose the picture you think shows the gravity forces on the Earth and the Sun. Name: Grade: Gravity and Orbits Pre-lab 1. Choose the picture you think shows the gravity forces on the Earth and the Sun. (a longer arrow to represents a big force, and a shorter arrow represent a smaller

More information

NGSS UNIT OVERVIEW SOLAR SYSTEM AND BEYOND

NGSS UNIT OVERVIEW SOLAR SYSTEM AND BEYOND NGSS UNIT OVERVIEW SOLAR SYSTEM AND BEYOND Performance Expectation MS-ESS1-1: Develop and use a model of the Earth-sun-moon system to describe the cyclic patterns of lunar phases, eclipses of the sun and

More information

5 & Up (ages 5-9 best with adult facilitation/collaboration)

5 & Up (ages 5-9 best with adult facilitation/collaboration) Summary: In this simple and engaging activity, learners will sort images according to size and gain a basic understanding for the scale of the objects in the Universe. We recommend using it in workshops,

More information

Analysis Methods in Atmospheric and Oceanic Science

Analysis Methods in Atmospheric and Oceanic Science Analysis Methods in Atmospheric and Oceanic Science 1 AOSC 652 Week 7, Day 1 10 Oct 2016 Student projects: 20% of the final grade: you will receive a numerical score for the project and final grade will

More information

RED. Math 113 (Calculus II) Final Exam Form A Fall Name: Student ID: Section: Instructor: Instructions:

RED. Math 113 (Calculus II) Final Exam Form A Fall Name: Student ID: Section: Instructor: Instructions: Name: Student ID: Section: Instructor: Math 3 (Calculus II) Final Exam Form A Fall 22 RED Instructions: For questions which require a written answer, show all your work. Full credit will be given only

More information

Python & Numpy A tutorial

Python & Numpy A tutorial Python & Numpy A tutorial Devert Alexandre School of Software Engineering of USTC 13 February 2012 Slide 1/38 Table of Contents 1 Why Python & Numpy 2 First steps with Python 3 Fun with lists 4 Quick tour

More information

Congratulations on being placed in the GSE Accelerated Analytic Geometry B/Advanced Algebra class for the school year!

Congratulations on being placed in the GSE Accelerated Analytic Geometry B/Advanced Algebra class for the school year! Dear Student: Congratulations on being placed in the GSE Accelerated Analytic Geometry B/Advanced Algebra class for the 0-09 school year! This is a fast-paced and rigorous college-preparatory math course

More information

E-book Code: REAU0029. For students at risk working at Upper Primary levels. rescue maths. Book 2 Measurement, Chance and data.

E-book Code: REAU0029. For students at risk working at Upper Primary levels. rescue maths. Book 2 Measurement, Chance and data. E-book Code: REAU0029 For students at risk working at Upper Primary levels rescue maths Book 2 Measurement, Chance and data By Sandy Tasker Ready-Ed Publications - 2003. Published by Ready-Ed Publications

More information

POGIL: Newton s First Law of Motion and Statics. Part 1: Net Force Model: Read the following carefully and study the diagrams that follow.

POGIL: Newton s First Law of Motion and Statics. Part 1: Net Force Model: Read the following carefully and study the diagrams that follow. POGIL: Newton s First Law of Motion and Statics Name Purpose: To become familiar with the forces acting on an object at rest Part 1: Net Force Model: Read the following carefully and study the diagrams

More information

Unit 2: Exponents and Radicals

Unit 2: Exponents and Radicals Unit 2: Exponents and Radicals Student Tracking Sheet Math 10 Common Name: Block: What I can do for this unit: After Practice After Review How I Did 2-1 I can explain the relationship between exponents

More information

continued Before you use the slides you might find the following websites useful for information on the satellite and also space in general: The

continued Before you use the slides you might find the following websites useful for information on the satellite and also space in general: The It s in the News! Teacher s guide Following the news about the satellite that crashed to earth last month, this issue of It s in the news! focuses on space. On 24th September 2011 between 3 and 5 am, an

More information

Math 101: Elementary Statistics Tests of Hypothesis

Math 101: Elementary Statistics Tests of Hypothesis Tests of Hypothesis Department of Mathematics and Computer Science University of the Philippines Baguio November 15, 2018 Basic Concepts of Statistical Hypothesis Testing A statistical hypothesis is an

More information

LESSON 8.3 EQUATIONS WITH FRACTIONS

LESSON 8.3 EQUATIONS WITH FRACTIONS LESSON 8. EQUATIONS WITH FRACTIONS LESSON 8. EQUATIONS WITH FRACTIONS OVERVIEW Here is what you'll learn in this lesson: Solving Equations a. Solving equations with rational epressions b. Solving for an

More information

PSI AP Physics 1 Gravitation

PSI AP Physics 1 Gravitation PSI AP Physics 1 Gravitation Multiple Choice 1. Two objects attract each other gravitationally. If the distance between their centers is cut in half, the gravitational force A) is cut to one fourth. B)

More information

Newton s Laws of Motion

Newton s Laws of Motion Newton s Laws of Motion Objectives: Students will describe inertia and how it is related to Newton s first law of motion. Students will calculate an object s acceleration, mass, or the force applied to

More information

Exoplanets detection and properties

Exoplanets detection and properties Researching Physics Higher Researching Physics Contents Advice to students Page 3 Page 4 Page 5 Overview of the unit and activities Organising your work and carrying out the activities Assessment issues

More information

Sequences and Series

Sequences and Series UNIT 11 Sequences and Series An integrated circuit can hold millions of microscopic components called transistors. How many transistors can fit in a chip on the tip of your finger? Moore s law predicts

More information

Solve Problems with Equations

Solve Problems with Equations Develop Skills and Strategies Part 1: Introduction Solve Problems with Equations CCSS 7.EE.B. 7.EE.B.4a You know how to compute with rational numbers and write and solve one-step equations. Take a look

More information

7-8 Using Exponential and Logarithmic Functions

7-8 Using Exponential and Logarithmic Functions 1. PALEONTOLOGY The half-life of Potassium-40 is about 1.25 billion years. a. Determine the value of k and the equation of decay for Potassium-40. b. A specimen currently contains 36 milligrams of Potassium-40.

More information

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel Objective: Students will gain familiarity with using Excel to record data, display data properly, use built-in formulae to do calculations, and plot and fit data with linear functions.

More information

Math Topic: Unit Conversions and Statistical Analysis of Data with Categorical and Quantitative Graphs

Math Topic: Unit Conversions and Statistical Analysis of Data with Categorical and Quantitative Graphs Math Topic: Unit Conversions and Statistical Analysis of Data with Categorical and Quantitative Graphs Science Topic: s/dwarf s of our Solar System Written by: Eric Vignaud and Lexie Edwards Lesson Objectives

More information

Announcements 30 Sep 2014

Announcements 30 Sep 2014 Announcements 30 Sep 2014 1. Prayer 2. Exam 1!! a. Thursday Oct 2 Tuesday Oct 7 (2 pm) in the Testing Center, late fee after Oct 6, 2 pm b. Covers through today's lecture (unless we don't quite finish,

More information

Our Fun Sun. Source: Measuring the Diameter of the Sun, The Educator s Reference Desk Enchanted Learning

Our Fun Sun. Source: Measuring the Diameter of the Sun, The Educator s Reference Desk Enchanted Learning Our Fun Sun Subject: Science, Math Grades: 7 th 8 th Rational or Purpose: Students will develop an easy tool in which they are able to look at the sun and find out what its diameter is by a simple arithmetic

More information

General Physics (PHY 2130)

General Physics (PHY 2130) General Physics (PHY 2130) Introduction Syllabus and teaching strategy Physics Introduction Mathematical review http://www.physics.wayne.edu/~apetrov/phy2130/ Chapter 1 Lecturer:, Room 358 Physics Building,

More information

Unit 1 Lesson 6: Seeing Structure in Expressions

Unit 1 Lesson 6: Seeing Structure in Expressions Unit 1 Lesson 6: Seeing Structure in Expressions Objective: Students will be able to use inductive reasoning to try to solve problems that are puzzle like in nature. CCSS: A.SSE.1.b, A.SSE.2 Example Problems

More information

Standards Alignment... 5 Safe Science... 9 Scienti c Inquiry Assembling Rubber Band Books...15

Standards Alignment... 5 Safe Science... 9 Scienti c Inquiry Assembling Rubber Band Books...15 Standards Alignment... 5 Safe Science... 9 Scienti c Inquiry... 11 Assembling Rubber Band Books...15 Earth in Space and Time The Scoop on Stars...17 Telescopes...19 Magnify the Sky...21 Star Samples...27

More information

Star. Planet. Chapter 1 Our Place in the Universe. 1.1 A Modern View of the Universe Our goals for learning: What is our place in the universe?

Star. Planet. Chapter 1 Our Place in the Universe. 1.1 A Modern View of the Universe Our goals for learning: What is our place in the universe? Chapter 1 Our Place in the Universe 1.1 A Modern View of the Universe Our goals for learning: What is our place in the universe? How did we come to be? How can we know what the universe was like in the

More information

6 TH GRADE ACCURATE PLANET SIZES AND DISTANCE FROM THE SUN ACTIVITY

6 TH GRADE ACCURATE PLANET SIZES AND DISTANCE FROM THE SUN ACTIVITY 6 TH GRADE ACCURATE PLANET SIZES AND DISTANCE FROM THE SUN ACTIVITY Summary: Accurate planet size and distance from the Sun is studied in this lesson. Each student constructs a correctly scaled diagram

More information

Name Period Date. Record all givens, draw a picture, arrow all vectors, write the formula, substitute and solve. units

Name Period Date. Record all givens, draw a picture, arrow all vectors, write the formula, substitute and solve. units Example Problems 12.1 E1. Doc Fizzix, whose mass is 65.0 kg, is doing a physics demonstration at the front of the classroom. How much gravitational force does Doc Fizzix exert on Rob, whose mass is 55

More information

ACCEL: PATTERNS OF MASS AND DENSITY IN THE SOLAR SYSTEM

ACCEL: PATTERNS OF MASS AND DENSITY IN THE SOLAR SYSTEM ACCEL: PATTERNS OF MASS AND DENSITY IN THE SOLAR SYSTEM Name: Date: Purpose: To investigate the patterns of mass, density, and size of planets in the solar system and compare the terrestrial and giant

More information

Cosmic Landscape Introduction Study Notes

Cosmic Landscape Introduction Study Notes Cosmic Landscape Introduction Study Notes About how much bigger in radius is the Sun than the Earth? The ratio of the Sun's radius to the Earth's radius is 1,392,000/12756 = 109.1 How big is an astronomical

More information

Statistics for IT Managers

Statistics for IT Managers Statistics for IT Managers 95-796, Fall 2012 Module 2: Hypothesis Testing and Statistical Inference (5 lectures) Reading: Statistics for Business and Economics, Ch. 5-7 Confidence intervals Given the sample

More information

Science and Engineering Practices DRAFT. Interpreting Data. and Applications of system and beyond. Students consider the

Science and Engineering Practices DRAFT. Interpreting Data. and Applications of system and beyond. Students consider the Solar System and Beyond Overview NGSS Performance Expectation MS-ESS1-1: Develop and use a model of the Earth-sun-moon system to describe the cyclic patterns of lunar phases, eclipses of the sun and moon,

More information

Countries that haven t adopted the Metric system yet

Countries that haven t adopted the Metric system yet Measurements Countries that haven t adopted the Metric system yet Customary Metric (Base Unit) International System (SI) Equivalents Length Mass inch, foot, yard, mile ounce, pound, ton Meter (m) Meter

More information

Solving two-body problems with Newton s Second Law. Example Static and Kinetic Friction. Section 5.1 Friction 10/15/13

Solving two-body problems with Newton s Second Law. Example Static and Kinetic Friction. Section 5.1 Friction 10/15/13 Solving two-body problems with Newton s Second Law You ll get multiple equations from the x and y directions, these equations can be solved simultaneously to find unknowns 1. Draw a separate free body

More information

B-10. If a ball is dropped from 160 cm and rebounds to 120 cm on the first bounce, how high will the ball be:

B-10. If a ball is dropped from 160 cm and rebounds to 120 cm on the first bounce, how high will the ball be: ALGEBRA 2 APPENDIX B HOMEWORK PROBLEMS Below is a list of the vocabulary used in this chapter. Make sure that you are familiar with all of these words and know what they mean. Refer to the glossary or

More information

Periodic Properties of the Elements

Periodic Properties of the Elements Periodic Properties of the Elements Reading: Ch 8, sections 6-9 Homework: Chapter 8: 57*, 59, 61*, 63*, 63, 71, 75*, 77 * = important homework question Background Discussion: What do we already know about

More information

Math 5: Precalculus. Homework Problems

Math 5: Precalculus. Homework Problems Math 5: Precalculus Homework Problems Note: Short answer questions are labeled by SQ and long answer questions are labeled by LQ. You will be graded on the clarity of your written work only with the long

More information

Mathematics Success Grade 8

Mathematics Success Grade 8 T538 Mathematics Success Grade 8 [OBJECTIVE] The student will compare functions represented algebraically, graphically, with verbal descriptions or in tables and identify functions as linear or non-linear.

More information

How can you use inductive reasoning to observe patterns and write general rules involving properties of exponents?

How can you use inductive reasoning to observe patterns and write general rules involving properties of exponents? 0. Product of Powers Property How can you use inductive reasoning to observe patterns and write general rules involving properties of exponents? ACTIVITY: Finding Products of Powers Work with a partner.

More information

UNIT 7: Kilo Hōkū - Astronomy & Navigation Teacher s Notes for: The Ordered Solar System

UNIT 7: Kilo Hōkū - Astronomy & Navigation Teacher s Notes for: The Ordered Solar System UNIT 7: Kilo Hōkū - Astronomy & Navigation Teacher s Notes for: The Ordered Solar System Before the students can begin their Tour Through the Solar System they need to have a roadmap. This exercise provides

More information

COURSE OUTLINE Descriptive Astronomy

COURSE OUTLINE Descriptive Astronomy Butler Community College Science, Technology, Engineering, and Math Division Robert Carlson Revised Fall 2008 Implemented Spring 2009 Textbook Update Fall 2013 COURSE OUTLINE Descriptive Astronomy Course

More information

MATH 32A: MIDTERM 1 REVIEW. 1. Vectors. v v = 1 22

MATH 32A: MIDTERM 1 REVIEW. 1. Vectors. v v = 1 22 MATH 3A: MIDTERM 1 REVIEW JOE HUGHES 1. Let v = 3,, 3. a. Find e v. Solution: v = 9 + 4 + 9 =, so 1. Vectors e v = 1 v v = 1 3,, 3 b. Find the vectors parallel to v which lie on the sphere of radius two

More information

Due Date Algebra 1 - Problem Set #8 SOL Review

Due Date Algebra 1 - Problem Set #8 SOL Review Due Date Algebra 1 - Problem Set #8 SOL Review Name 1 The table below shows the relation between the number of students in math classes and the predicted number of students in each class passing a test.

More information

Gravity 3. Gravity 3. Gravitational Potential and the Geoid. Chuck Connor, Laura Connor. Potential Fields Geophysics: Week 2.

Gravity 3. Gravity 3. Gravitational Potential and the Geoid. Chuck Connor, Laura Connor. Potential Fields Geophysics: Week 2. Gravitational Potential and the Geoid Chuck Connor, Laura Connor Potential Fields Geophysics: Week 2 Objectives for Week 1 Gravity as a vector Gravitational Potential The Geoid Gravity as a vector We can

More information

Name. Satellite Motion Lab

Name. Satellite Motion Lab Name Satellite Motion Lab Purpose To experiment with satellite motion using an interactive simulation in order to gain an understanding of Kepler s Laws of Planetary Motion and Newton s Law of Universal

More information

6.1 Newtonian Gravitation

6.1 Newtonian Gravitation 6.1 Newtonian Gravitation Early in the formation of our galaxy, tiny gravitational effects between particles began to draw matter together into slightly denser configurations. Those, in turn, exerted even

More information

2.3 Solving Absolute Value Inequalities

2.3 Solving Absolute Value Inequalities .3 Solving Absolute Value Inequalities Essential Question: What are two was to solve an absolute value inequalit? Resource Locker Eplore Visualizing the Solution Set of an Absolute Value Inequalit You

More information

1.6. Solving Linear Inequalities. What you should learn. Why you should learn it To model real-life situations, such as amusement park fees in Ex. 50.

1.6. Solving Linear Inequalities. What you should learn. Why you should learn it To model real-life situations, such as amusement park fees in Ex. 50. Page 1 of 7 1.6 Solving Linear Inequalities What you should learn GOAL 1 Solve simple inequalities. GOAL 2 Solve compound inequalities, as applied in Example 6. Why you should learn it To model real-life

More information

arxiv: v1 [physics.ed-ph] 18 Feb 2016

arxiv: v1 [physics.ed-ph] 18 Feb 2016 Submitted to Physics Education May 19, 2015 Demonstrating Martian Gravity arxiv:1602.06858v1 [physics.ed-ph] 18 Feb 2016 Patrik Pirkola and Patrick B. Hall Department of Physics and Astronomy, York University,

More information

Write and Apply Exponential and Power Functions

Write and Apply Exponential and Power Functions TEKS 7.7 a., 2A..B, 2A..F Write and Apply Exponential and Power Functions Before You wrote linear, quadratic, and other polynomial functions. Now You will write exponential and power functions. Why? So

More information

CONSERVATIVE FORCES, POTENTIAL ENERGY AND CONSERVATION OF ENERGY

CONSERVATIVE FORCES, POTENTIAL ENERGY AND CONSERVATION OF ENERGY CONSERVATIVE FORCES, POTENTIAL ENERGY AND CONSERVATION OF ENERGY Today s Objectives: Students will be able to: 1. Use the concept of conservative forces and determine the potential energy of such forces.

More information

Pre-Comp Review Questions- 8 th Grade

Pre-Comp Review Questions- 8 th Grade Pre-Comp Review Questions- 8 th Grade Section 1- Units 1. Fill in the missing SI and English Units Measurement SI Unit SI Symbol English Unit English Symbol Time second s. Temperature K Fahrenheit Length

More information

1.1 Solving Equations

1.1 Solving Equations Name Class Date 1.1 Solving Equations Essential Question: How do you solve an equation in one variable? Explore Solving Equations by Guess-and-Check or by Working Backward An equation is a mathematical

More information

Intro to Composite Functions

Intro to Composite Functions Intro to Composite Functions These notes are intended as a summary of section 4.3 (p. 291 297 in your workbook. You should also read the section for more complete explanations and additional examples.

More information

APPM 2360 Project 1: Black Holes

APPM 2360 Project 1: Black Holes APPM 2360 Project 1: Black Holes Due: February 22, 2018 by 11:59 PM on D2L 1 Introduction Black holes are one of the stranger predictions of Einsteins beautiful theory of general relativity. When matter

More information

MATH 445/545 Homework 1: Due February 11th, 2016

MATH 445/545 Homework 1: Due February 11th, 2016 MATH 445/545 Homework 1: Due February 11th, 2016 Answer the following questions Please type your solutions and include the questions and all graphics if needed with the solution 1 A business executive

More information

Mass and Weight. Aren t they the same? 19/05/2016. cgrahamphysics.com 2016

Mass and Weight. Aren t they the same? 19/05/2016. cgrahamphysics.com 2016 Mass and Weight Aren t they the same? Starter One of Four Which of these are the units of speed? meters 0 C miles m/s Which of these are the units of speed? meters 0 C miles m/s Which of these has the

More information

NAME: PERIOD: DATE: ECCENTRICITY OF PLANETARY ORBITS INTRODUCTION

NAME: PERIOD: DATE: ECCENTRICITY OF PLANETARY ORBITS INTRODUCTION NAME: PERIOD: DATE: PARTNERS: Lab # ECCENTRICITY OF PLANETARY ORBITS INTRODUCTION INTRODUCTION Our sun is not exactly in the center of the orbits of the planets, and therefore the planetary orbits are

More information

Universal Gravitation W.S.

Universal Gravitation W.S. Universal Gravitation W.S. 1. Paint spray travels radially away from the nozzle of the can in straight lines. Like gravity, the strength (intensity) of the spray obeys an inverse-square law. distance area

More information

Lesson 16: Weathering and Soils

Lesson 16: Weathering and Soils Lesson 16: Weathering and Soils Summary This module is aimed at helping students understand the patterns and drivers of weathering and the formation of soils on Earth and Mars. Learning Goals Students

More information

Mathematics in Contemporary Society Chapter 10

Mathematics in Contemporary Society Chapter 10 City University of New York (CUNY) CUNY Academic Works Open Educational Resources Queensborough Community College Fall 2015 Mathematics in Contemporary Society Chapter 10 Patrick J. Wallach Queensborough

More information