Recommendation Systems

Size: px
Start display at page:

Download "Recommendation Systems"

Transcription

1 Recommendation Systems Collaborative Filtering Finding somebody or something similar by looking at recommendation systems Recommendation systems are found everywhere example: Amazon Recommendation systems are collaborative since recommendations are made based on other people or things Here s a table showing 3 users who rated 2 books: Homeword Bound Jill 5 5 John 2 5 Tyler 1 4 Down and Dirty Try to represent this table in 2D

2 Distance Measure Manhattan Distance Use Distance Measure techniques for computation Say you have a fourth person who rates both books: Mr.X rates Homeword Bound 4 stars and Down and Dirty 2 stars How do you find the person who is most similar or closest Manhattan Distance Easiest distance measure (fast to compute) Use the 2D representation (person is represented by an (x,y) point) Formula: Uses absolute value of the difference Recommend another book liked by Jill to Mr.X? Jill 4 John 5 Tyler 5 Distance from Mr.X

3 Distance Measure Euclidean Distance Manhattan Distance is fast to compute, but not very accurate Euclidean Distance More accurate Uses Pythagorean theorem Computes the hypotenuse of the triangle for better results Formula: Distance from Mr.X Jill 3.16 John 3.61 Tyler 3.61

4 2-Dimensional to N-Dimensional Example: Users can rate music service bands on a star system (1 to 5 including half star rating) Compute the distance based on the number of bands any 2 people reviewed

5 2-Dimensional to N-Dimensional Manhattan distance between Angelica and Bill

6 2-Dimensional to N-Dimensional Euclidean distance between Angelica and Bill

7 Flaw with Distance Measure Consider Euclidean distance between Hailey and Veronica Only 2 bands in common between the two! Compare this 2-D computation with another pair who might have 5 bands in common making it 5-dimensional Doesn t make the distance measure very accurate if data set is incomplete

8 Generalizing Distance Measure Minkowski Distance Metric: When r = 1, the formula is Manhattan distance When r = 2, the formula is Euclidean distance (The greater the r value, the more a large difference in one dimension will influence the total difference)

9 Represent Data in Python

10 Manhattan distance Algorithm to compute Manhattan distance For any two user ratings For every band rated by one user If second user has rated same band then Get the distance and add it to total distance

11 Compute Nearest Neighbor Algorithm to compute nearest neighbor Use the Manhattan distance function for each person and get the distances to everybody else Based on the distances, you can get any person s nearest neighbor

12 Recommendations Making Recommendations Say that we wanted to make recommendations to Hailey We find her nearest neighbor (using computenearestneighbor) Find bands that Veronica has rated but Hailey has not

13 Recommendations Problems with Recommendations For Angelica we get back an empty set, to indicate no recommendations!

14 Implement Minkowski Distance Use Minkowski distance formula to be able to compute either Manhattan or Euclidean Make appropriate changes to computenearestneighbor to use Minkowski distance Chart out Recommendations for a few users for both distance measures

15 Rating Behavior Users rating behavior can be quite different Bill avoids extremes Jordyn likes everything or hesitant to rate anything below 4 Hailey gives either a 1 or a 4 So how does Hailey s 4 compare to Jordyn s 4? Hailey may really like it but Jordyn might find it just ok so a score of 4 can be relative in the mind of the user Jordyn s scoring can also be termed as grade inflation One solution to the problem is to find a correlation coefficient called the Pearson Correlation Coefficient

16 Pearson Correlation Coefficient In statistics, the Pearson product-moment correlation coefficient (sometimes referred to Pearson's r) is a measure of the linear dependence between two variables X and Y Gives a value between +1 and 1 inclusive 1 is total positive linear correlation 0 is no linear correlation 1 is total negative linear correlation

17 Pearson Correlation Coefficient Graph showing the above chart indicates a Straight Line which means it s Perfect Agreement If Clara and Robert agree less, the less the data points reside on a straight line Pearson Correlation Coefficient is a measure of correlation between two variables Ranges between -1 and 1 inclusive, 1 indicates perfect agreement, -1 indicates perfect disagreement

18 Pearson Correlation Coefficient Formula is: Alternative approximation of Pearson (slightly simplified): (If you plug in the ratings for Clara & Robert, r will be 1!)

19 Cosine Similarity Need to avoid shared-zero values Example: Track number of times a song was played Is Sally more similar in listening habits to Ann than Ben? Problem? There are over 15 million tracks in itunes and one may only have a few thousand Out of these number of tracks played might be even less; and there are more zero attributes (not played) Compare this with another person s play list and zero attributes and it s likely that shared zeros are more common

20 Cosine Similarity Formula to ignore 0-0 matches: Where x. y is the dot product and x indicates the length of the vector x which is: For the example which had perfect agreement: Vector x = (4.75, 4.5, 5, 4.25, 4) Vector y = (4, 3, 5, 2, 1) Cosine similarity:

21 Similarity Selection If data is subject to grade-inflation (different scales for different users) use Pearson If data is dense with almost all attributes having non-zero values, use Manhattan or Euclidean If data is sparse, use Cosine Similarity If data is not dense equally across the spectrum there are oddities that present themselves Example: 3 users with 25, 26 and 150 ratings who all share 25 non-zero tracks with similar ratings It s a mistake to rely on a single most similar person since any quirk with the person is passed on as a recommendation!

22 K-nearest neighbor Problems arise when we rely on a single most similar person Any quirk that person has gets passed on as a recommendation Instead if we use k most similar people it filters out some of these anomalies called the K-nearest neighbor approach Value for k depends on application

23 K-nearest neighbor Example using k=3 Each person is going to influence the recommendation but by how much? Sally s share is 0.8/2 or 40% Eric s share is 0.7/2 or 35% Amanda s share is 0.5/2 or 25% Projected rating = (4.5 x 0.25) + (5 x 0.35) + (3.5 x 0.4) = 4.2

proximity similarity dissimilarity distance Proximity Measures:

proximity similarity dissimilarity distance Proximity Measures: Similarity Measures Similarity and dissimilarity are important because they are used by a number of data mining techniques, such as clustering nearest neighbor classification and anomaly detection. The

More information

Similarity and recommender systems

Similarity and recommender systems Similarity and recommender systems Hiroshi Shimodaira January-March 208 In this chapter we shall look at how to measure the similarity between items To be precise we ll look at a measure of the dissimilarity

More information

Descriptive Data Summarization

Descriptive Data Summarization Descriptive Data Summarization Descriptive data summarization gives the general characteristics of the data and identify the presence of noise or outliers, which is useful for successful data cleaning

More information

Chapter 1 Review of Equations and Inequalities

Chapter 1 Review of Equations and Inequalities Chapter 1 Review of Equations and Inequalities Part I Review of Basic Equations Recall that an equation is an expression with an equal sign in the middle. Also recall that, if a question asks you to solve

More information

Solution to Proof Questions from September 1st

Solution to Proof Questions from September 1st Solution to Proof Questions from September 1st Olena Bormashenko September 4, 2011 What is a proof? A proof is an airtight logical argument that proves a certain statement in general. In a sense, it s

More information

1 Review of the dot product

1 Review of the dot product Any typographical or other corrections about these notes are welcome. Review of the dot product The dot product on R n is an operation that takes two vectors and returns a number. It is defined by n u

More information

Collaborative Filtering

Collaborative Filtering Collaborative Filtering Nicholas Ruozzi University of Texas at Dallas based on the slides of Alex Smola & Narges Razavian Collaborative Filtering Combining information among collaborating entities to make

More information

Collabora've Filtering

Collabora've Filtering Collabora've Filtering EECS 349 Machine Learning Bongjun Kim Fall, 2015 What is CollaboraCve Filtering? RecommendaCon system Amazon recommends items based on your purchase history and racngs RecommendaCon

More information

Grade 7/8 Math Circles November 27 & 28 &

Grade 7/8 Math Circles November 27 & 28 & Faculty of Mathematics Waterloo, Ontario N2L 3G1 Centre for Education in Mathematics and Computing Grade 7/8 Math Circles November 27 & 28 & 29 2018 Symmetry and Music Introduction We ve done a lot of

More information

June If you want, you may scan your assignment and convert it to a.pdf file and it to me.

June If you want, you may scan your assignment and convert it to a.pdf file and  it to me. Summer Assignment Pre-Calculus Honors June 2016 Dear Student: This assignment is a mandatory part of the Pre-Calculus Honors course. Students who do not complete the assignment will be placed in the regular

More information

PS2: Two Variable Statistics

PS2: Two Variable Statistics PS2: Two Variable Statistics LT2: Measuring Correlation and Line of best fit by eye. LT3: Linear regression LT4: The χ 2 test of independence. 1 Pearson's Correlation Coefficient In examinations you are

More information

Unit 2: Functions and Patterns

Unit 2: Functions and Patterns For Teacher Use Packet Score: Name: Period: Algebra 1 Unit 2: Functions and Patterns Note Packet Date Topic/Assignment Page Due Date Score (For Teacher Use Only) Warm-Ups 2-A Intro to Functions 2-B Tile

More information

NOTES: Chapter 11. Radicals & Radical Equations. Algebra 1B COLYER Fall Student Name:

NOTES: Chapter 11. Radicals & Radical Equations. Algebra 1B COLYER Fall Student Name: NOTES: Chapter 11 Radicals & Radical Equations Algebra 1B COLYER Fall 2016 Student Name: Page 2 Section 3.8 ~ Finding and Estimating Square Roots Radical: A symbol use to represent a. Radicand: The number

More information

Recommendation Systems

Recommendation Systems Recommendation Systems Pawan Goyal CSE, IITKGP October 21, 2014 Pawan Goyal (IIT Kharagpur) Recommendation Systems October 21, 2014 1 / 52 Recommendation System? Pawan Goyal (IIT Kharagpur) Recommendation

More information

Data Mining Recitation Notes Week 3

Data Mining Recitation Notes Week 3 Data Mining Recitation Notes Week 3 Jack Rae January 28, 2013 1 Information Retrieval Given a set of documents, pull the (k) most similar document(s) to a given query. 1.1 Setup Say we have D documents

More information

MITOCW MIT18_01SCF10Rec_24_300k

MITOCW MIT18_01SCF10Rec_24_300k MITOCW MIT18_01SCF10Rec_24_300k JOEL LEWIS: Hi. Welcome back to recitation. In lecture, you've been doing related rates problems. I've got another example for you, here. So this one's a really tricky one.

More information

The result is; distances are contracted in the direction of motion.

The result is; distances are contracted in the direction of motion. The result is; distances are contracted in the direction of motion. t = t/(1 v 2 /c 2 ) 0.5 d = d(1- v 2 /c 2 ) 0.5 These are the Lorentz equations. The Twin-Paradox. A woman astronaut is going to fly

More information

Algebra Exam. Solutions and Grading Guide

Algebra Exam. Solutions and Grading Guide Algebra Exam Solutions and Grading Guide You should use this grading guide to carefully grade your own exam, trying to be as objective as possible about what score the TAs would give your responses. Full

More information

How to rotate a vector using a rotation matrix

How to rotate a vector using a rotation matrix How to rotate a vector using a rotation matrix One of the most useful operations in computer graphics is the rotation of a vector using a rotation matrix. I want to introduce the underlying idea of the

More information

Lab 6 Forces Part 2. Physics 225 Lab

Lab 6 Forces Part 2. Physics 225 Lab b Lab 6 Forces Part 2 Introduction This is the second part of the lab that you started last week. If you happen to have missed that lab then you should go back and read it first since this lab will assume

More information

18 : ( ( ( ( ( ( ( ( ( ( ( (3-4. (1. (2. (3. (4-5» «. (4 (3 (2

18 : ( ( ( ( ( ( ( ( ( ( ( (3-4. (1. (2. (3. (4-5» «. (4 (3 (2 1 1389-18 25 1 25 20 50 26 25 17 75 51 25 20 100 76 25 75 : 100 : 135 : 175 : 18 : - - - (2 - - - (4 - - - (2 - - - (4 - - - (2 - - - (4 - - - (1 - - - (3-2 - - - (1 - - - (3-3 - - - (1 - - - (3-4. (1.

More information

Geometry & Measurement

Geometry & Measurement Geometry & Measurement Maureen Steddin table of contents To the Student......................... v Part 1: Introduction.................................... 1 General Approach to Math Questions...................

More information

Warm Up. Fourth Grade Released Test Question: 1) Which of the following has the greatest value? 2) Write the following numbers in expanded form: 25:

Warm Up. Fourth Grade Released Test Question: 1) Which of the following has the greatest value? 2) Write the following numbers in expanded form: 25: Warm Up Fourth Grade Released Test Question: 1) Which of the following has the greatest value? A 12.1 B 0.97 C 4.23 D 5.08 Challenge: Plot these numbers on an open number line. 2) Write the following numbers

More information

1 a) Remember, the negative in the front and the negative in the exponent have nothing to do w/ 1 each other. Answer: 3/ 2 3/ 4. 8x y.

1 a) Remember, the negative in the front and the negative in the exponent have nothing to do w/ 1 each other. Answer: 3/ 2 3/ 4. 8x y. AP Calculus Summer Packer Key a) Remember, the negative in the front and the negative in the eponent have nothing to do w/ each other. Answer: b) Answer: c) Answer: ( ) 4 5 = 5 or 0 /. 9 8 d) The 6,, and

More information

FINAL EXAM STUDY GUIDE

FINAL EXAM STUDY GUIDE FINAL EXAM STUDY GUIDE The Final Exam takes place on Wednesday, June 13, 2018, from 10:30 AM to 12:30 PM in 1100 Donald Bren Hall (not the usual lecture room!!!) NO books/notes/calculators/cheat sheets

More information

Lesson Plan by: Stephanie Miller

Lesson Plan by: Stephanie Miller Lesson: Pythagorean Theorem and Distance Formula Length: 45 minutes Grade: Geometry Academic Standards: MA.G.1.1 2000 Find the lengths and midpoints of line segments in one- or two-dimensional coordinate

More information

2018 Arizona State University Page 1 of 16

2018 Arizona State University Page 1 of 16 NAME: MATH REFRESHER ANSWER SHEET (Note: Write all answers on this sheet and the following graph page.) 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27.

More information

Part Two. Diagnostic Test

Part Two. Diagnostic Test Part Two Diagnostic Test AP Calculus AB and BC Diagnostic Tests Take a moment to gauge your readiness for the AP Calculus eam by taking either the AB diagnostic test or the BC diagnostic test, depending

More information

ACCESS TO SCIENCE, ENGINEERING AND AGRICULTURE: MATHEMATICS 1 MATH00030 SEMESTER / Lines and Their Equations

ACCESS TO SCIENCE, ENGINEERING AND AGRICULTURE: MATHEMATICS 1 MATH00030 SEMESTER / Lines and Their Equations ACCESS TO SCIENCE, ENGINEERING AND AGRICULTURE: MATHEMATICS 1 MATH00030 SEMESTER 1 017/018 DR. ANTHONY BROWN. Lines and Their Equations.1. Slope of a Line and its y-intercept. In Euclidean geometry (where

More information

CS425: Algorithms for Web Scale Data

CS425: Algorithms for Web Scale Data CS: Algorithms for Web Scale Data Most of the slides are from the Mining of Massive Datasets book. These slides have been modified for CS. The original slides can be accessed at: www.mmds.org Customer

More information

Part 2 - Beginning Algebra Summary

Part 2 - Beginning Algebra Summary Part - Beginning Algebra Summary Page 1 of 4 1/1/01 1. Numbers... 1.1. Number Lines... 1.. Interval Notation.... Inequalities... 4.1. Linear with 1 Variable... 4. Linear Equations... 5.1. The Cartesian

More information

Sums of Squares (FNS 195-S) Fall 2014

Sums of Squares (FNS 195-S) Fall 2014 Sums of Squares (FNS 195-S) Fall 014 Record of What We Did Drew Armstrong Vectors When we tried to apply Cartesian coordinates in 3 dimensions we ran into some difficulty tryiing to describe lines and

More information

Introductory Quantum Chemistry Prof. K. L. Sebastian Department of Inorganic and Physical Chemistry Indian Institute of Science, Bangalore

Introductory Quantum Chemistry Prof. K. L. Sebastian Department of Inorganic and Physical Chemistry Indian Institute of Science, Bangalore Introductory Quantum Chemistry Prof. K. L. Sebastian Department of Inorganic and Physical Chemistry Indian Institute of Science, Bangalore Lecture - 4 Postulates Part 1 (Refer Slide Time: 00:59) So, I

More information

ASTRO 114 Lecture Okay. We re now gonna continue discussing and conclude discussing the entire

ASTRO 114 Lecture Okay. We re now gonna continue discussing and conclude discussing the entire ASTRO 114 Lecture 55 1 Okay. We re now gonna continue discussing and conclude discussing the entire universe. So today we re gonna learn about everything, everything that we know of. There s still a lot

More information

Business Statistics. Lecture 9: Simple Regression

Business Statistics. Lecture 9: Simple Regression Business Statistics Lecture 9: Simple Regression 1 On to Model Building! Up to now, class was about descriptive and inferential statistics Numerical and graphical summaries of data Confidence intervals

More information

f(x 0 + h) f(x 0 ) h slope of secant line = m sec

f(x 0 + h) f(x 0 ) h slope of secant line = m sec Derivatives Using limits, we can define the slope of a tangent line to a function. When given a function f(x), and given a point P (x 0, f(x 0 )) on f, if we want to find the slope of the tangent line

More information

MATH 1130 Exam 1 Review Sheet

MATH 1130 Exam 1 Review Sheet MATH 1130 Exam 1 Review Sheet The Cartesian Coordinate Plane The Cartesian Coordinate Plane is a visual representation of the collection of all ordered pairs (x, y) where x and y are real numbers. This

More information

5.5 Special Rights. A Solidify Understanding Task

5.5 Special Rights. A Solidify Understanding Task SECONDARY MATH III // MODULE 5 MODELING WITH GEOMETRY 5.5 In previous courses you have studied the Pythagorean theorem and right triangle trigonometry. Both of these mathematical tools are useful when

More information

Astronomy 102 Math Review

Astronomy 102 Math Review Astronomy 102 Math Review 2003-August-06 Prof. Robert Knop r.knop@vanderbilt.edu) For Astronomy 102, you will not need to do any math beyond the high-school alegbra that is part of the admissions requirements

More information

Notes: Pythagorean Triples

Notes: Pythagorean Triples Math 5330 Spring 2018 Notes: Pythagorean Triples Many people know that 3 2 + 4 2 = 5 2. Less commonly known are 5 2 + 12 2 = 13 2 and 7 2 + 24 2 = 25 2. Such a set of integers is called a Pythagorean Triple.

More information

Individual Round Arithmetic

Individual Round Arithmetic Individual Round Arithmetic (1) What is two-thirds times three-quarters? 1/2 (2) True or False: If the average of twenty exam scores is 75.65% (and no one actually had a score of 75.65%) there must be

More information

Linear Algebra, Summer 2011, pt. 3

Linear Algebra, Summer 2011, pt. 3 Linear Algebra, Summer 011, pt. 3 September 0, 011 Contents 1 Orthogonality. 1 1.1 The length of a vector....................... 1. Orthogonal vectors......................... 3 1.3 Orthogonal Subspaces.......................

More information

Notes: Vectors and Scalars

Notes: Vectors and Scalars A particle moving along a straight line can move in only two directions and we can specify which directions with a plus or negative sign. For a particle moving in three dimensions; however, a plus sign

More information

Euclidean Geometry. The Elements of Mathematics

Euclidean Geometry. The Elements of Mathematics Euclidean Geometry The Elements of Mathematics Euclid, We Hardly Knew Ye Born around 300 BCE in Alexandria, Egypt We really know almost nothing else about his personal life Taught students in mathematics

More information

MA 1125 Lecture 15 - The Standard Normal Distribution. Friday, October 6, Objectives: Introduce the standard normal distribution and table.

MA 1125 Lecture 15 - The Standard Normal Distribution. Friday, October 6, Objectives: Introduce the standard normal distribution and table. MA 1125 Lecture 15 - The Standard Normal Distribution Friday, October 6, 2017. Objectives: Introduce the standard normal distribution and table. 1. The Standard Normal Distribution We ve been looking at

More information

STEP 1: Ask Do I know the SLOPE of the line? (Notice how it s needed for both!) YES! NO! But, I have two NO! But, my line is

STEP 1: Ask Do I know the SLOPE of the line? (Notice how it s needed for both!) YES! NO! But, I have two NO! But, my line is EQUATIONS OF LINES 1. Writing Equations of Lines There are many ways to define a line, but for today, let s think of a LINE as a collection of points such that the slope between any two of those points

More information

Math 222, Exam I, September 17, 2002 Answers

Math 222, Exam I, September 17, 2002 Answers Math, Exam I, September 7, 00 Answers I. (5 points.) (a) Evaluate (6x 5 x 4 7x + 3/x 5 + 4e x + 7 x ). Answer: (6x 5 x 4 7x + 3/x 5 + 4e x + 7 x ) = = x 6 + x 3 3 7x + 3 ln x 5x + 4ex + 7x ln 7 + C. Answer:

More information

Vectors Part 1: Two Dimensions

Vectors Part 1: Two Dimensions Vectors Part 1: Two Dimensions Last modified: 20/02/2018 Links Scalars Vectors Definition Notation Polar Form Compass Directions Basic Vector Maths Multiply a Vector by a Scalar Unit Vectors Example Vectors

More information

APPENDIX 1 BASIC STATISTICS. Summarizing Data

APPENDIX 1 BASIC STATISTICS. Summarizing Data 1 APPENDIX 1 Figure A1.1: Normal Distribution BASIC STATISTICS The problem that we face in financial analysis today is not having too little information but too much. Making sense of large and often contradictory

More information

Latitude and Longitude:

Latitude and Longitude: Latitude and Longitude: Finding Locations on Planet Earth. With thanks and credit to Step.com Typical Graph This is an example of a typical graph. It is made up of points that are connected by a line.

More information

Quadratic. mathematicians where they were solving the areas and sides of rectangles. Geometric methods

Quadratic. mathematicians where they were solving the areas and sides of rectangles. Geometric methods Baker 1 Justin Baker Math 101: Professor Petersen 6 march 2016 Quadratic The quadratic equations have dated back all the way to the early 2000 B.C. to the Babylonian mathematicians where they were solving

More information

Correlation. We don't consider one variable independent and the other dependent. Does x go up as y goes up? Does x go down as y goes up?

Correlation. We don't consider one variable independent and the other dependent. Does x go up as y goes up? Does x go down as y goes up? Comment: notes are adapted from BIOL 214/312. I. Correlation. Correlation A) Correlation is used when we want to examine the relationship of two continuous variables. We are not interested in prediction.

More information

CALC 3 CONCEPT PACKET Complete

CALC 3 CONCEPT PACKET Complete CALC 3 CONCEPT PACKET Complete Written by Jeremy Robinson, Head Instructor Find Out More +Private Instruction +Review Sessions WWW.GRADEPEAK.COM Need Help? Online Private Instruction Anytime, Anywhere

More information

6th Grade. Dependent & Independent Variables

6th Grade. Dependent & Independent Variables Slide 1 / 68 Slide 2 / 68 6th Grade Dependent & Independent Variables 2014-10-28 www.njctl.org Slide 3 / 68 Table of Contents Translating to Equations Dependent and Independent Variables Click on a topic

More information

[Disclaimer: This is not a complete list of everything you need to know, just some of the topics that gave people difficulty.]

[Disclaimer: This is not a complete list of everything you need to know, just some of the topics that gave people difficulty.] Math 43 Review Notes [Disclaimer: This is not a complete list of everything you need to know, just some of the topics that gave people difficulty Dot Product If v (v, v, v 3 and w (w, w, w 3, then the

More information

7 Distances. 7.1 Metrics. 7.2 Distances L p Distances

7 Distances. 7.1 Metrics. 7.2 Distances L p Distances 7 Distances We have mainly been focusing on similarities so far, since it is easiest to explain locality sensitive hashing that way, and in particular the Jaccard similarity is easy to define in regards

More information

ACCESS TO SCIENCE, ENGINEERING AND AGRICULTURE: MATHEMATICS 1 MATH00030 SEMESTER /2018

ACCESS TO SCIENCE, ENGINEERING AND AGRICULTURE: MATHEMATICS 1 MATH00030 SEMESTER /2018 ACCESS TO SCIENCE, ENGINEERING AND AGRICULTURE: MATHEMATICS 1 MATH00030 SEMESTER 1 2017/2018 DR. ANTHONY BROWN 1. Arithmetic and Algebra 1.1. Arithmetic of Numbers. While we have calculators and computers

More information

Ratios, Proportions, Unit Conversions, and the Factor-Label Method

Ratios, Proportions, Unit Conversions, and the Factor-Label Method Ratios, Proportions, Unit Conversions, and the Factor-Label Method Math 0, Littlefield I don t know why, but presentations about ratios and proportions are often confused and fragmented. The one in your

More information

N AT E S T E M E N & K E V I N Y E H R U D I N : T R A N S L AT E D

N AT E S T E M E N & K E V I N Y E H R U D I N : T R A N S L AT E D N AT E S T E M E N & K E V I N Y E H R U D I N : T R A N S L AT E D Contents Preface 9 1 The Real and Complex Number System 11 Introduction 11 Ordered Sets 11 Fields 14 The Real Field 14 The Extended

More information

Lesson 29. Standardized Test Questions. Review: Lessons 2-25

Lesson 29. Standardized Test Questions. Review: Lessons 2-25 Lesson 29 Standardized Test Questions Review: Lessons 2-25 Whether you are planning to go to college, or wanting to become certified in any number of skills, you will most likely have to take some type

More information

UNIT 2 The Particulate Nature of Matter

UNIT 2 The Particulate Nature of Matter UNIT 2 The Particulate Nature of Matter Take a moment to think about all of the different properties which can be exhibited by matter. The list seems endless. Matter can be found in a variety of forms,

More information

EZ Play Today Richard Clayderman Music of Love, 201

EZ Play Today Richard Clayderman Music of Love, 201 EZ Play Today Richard Clayderman Music of Love, 201 Richard Clayderman Click here if your download doesn"t start automatically EZ Play Today Richard Clayderman Music of Love, 201 Richard Clayderman EZ

More information

MAT029C. 8.2 Multiplying and Simplifying with Radical Expressions.

MAT029C. 8.2 Multiplying and Simplifying with Radical Expressions. MAT029C TOPICS: RADICAL EQUATIONS QUADRATIC EQUATIONS Radical Equations 8.1 Introduction to Radical Expressions I. Basically, squaring and square rooting undo each other: = 9 and = 3. So, = 9, right? II.

More information

Intensity of Light and Heat. The second reason that scientists prefer the word intensity is Well, see for yourself.

Intensity of Light and Heat. The second reason that scientists prefer the word intensity is Well, see for yourself. IDS 102 Intensity of Light and Heat When talking about a light source, most people are more comfortable with the word brightness than they are with the word intensity. Scientists generally prefer the word

More information

Section 7.1 Objective 1: Solve Quadratic Equations Using the Square Root Property Video Length 12:12

Section 7.1 Objective 1: Solve Quadratic Equations Using the Square Root Property Video Length 12:12 Section 7.1 Video Guide Solving Quadratic Equations by Completing the Square Objectives: 1. Solve Quadratic Equations Using the Square Root Property. Complete the Square in One Variable 3. Solve Quadratic

More information

Written by Rachel Singh, last updated Oct 1, Functions

Written by Rachel Singh, last updated Oct 1, Functions Written by Rachel Singh, last updated Oct 1, 2018 Functions About In algebra, we think of functions as something like f(x), where x is the input, it s plugged into an equation, and we get some output,

More information

Section 5.4. Ken Ueda

Section 5.4. Ken Ueda Section 5.4 Ken Ueda Students seem to think that being graded on a curve is a positive thing. I took lasers 101 at Cornell and got a 92 on the exam. The average was a 93. I ended up with a C on the test.

More information

2. Light carries information. Scientists use light to learn about the Universe.

2. Light carries information. Scientists use light to learn about the Universe. 1. Our sun is a star and the stars are suns. Even the nearest star lies enormously far beyond our own solar system. Stars are orbited by planets, which may be very different worlds from ours. The universe

More information

Linear Functions. Unit 3

Linear Functions. Unit 3 Linear Functions Unit 3 Standards: 8.F.1 Understand that a function is a rule that assigns to each input exactly one output. The graph of a function is the set of ordered pairs consisting of an input and

More information

Mining of Massive Datasets Jure Leskovec, AnandRajaraman, Jeff Ullman Stanford University

Mining of Massive Datasets Jure Leskovec, AnandRajaraman, Jeff Ullman Stanford University Note to other teachers and users of these slides: We would be delighted if you found this our material useful in giving your own lectures. Feel free to use these slides verbatim, or to modify them to fit

More information

MITOCW R11. Double Pendulum System

MITOCW R11. Double Pendulum System MITOCW R11. Double Pendulum System The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high quality educational resources for

More information

THE KENNESAW STATE UNIVERSITY HIGH SCHOOL MATHEMATICS COMPETITION PART I MULTIPLE CHOICE (A) 0 (B) 1 (C) 2 (D) 3 (E) 4

THE KENNESAW STATE UNIVERSITY HIGH SCHOOL MATHEMATICS COMPETITION PART I MULTIPLE CHOICE (A) 0 (B) 1 (C) 2 (D) 3 (E) 4 THE 007 008 KENNESAW STATE UNIVERSITY HIGH SCHOOL MATHEMATICS COMPETITION PART I MULTIPLE CHOICE For each of the following questions, carefully blacken the appropriate box on the answer sheet with a #

More information

Recommendation Systems

Recommendation Systems Recommendation Systems Pawan Goyal CSE, IITKGP October 29-30, 2015 Pawan Goyal (IIT Kharagpur) Recommendation Systems October 29-30, 2015 1 / 61 Recommendation System? Pawan Goyal (IIT Kharagpur) Recommendation

More information

Learn more about TechnoNewsletter. TechnoStar. Fan Club Newsletter

Learn more about TechnoNewsletter. TechnoStar. Fan Club Newsletter Learn more about TechnoNewsletter TechnoStar Fan Club Newsletter Attention pop music fans! In this issue: Top 5 Reasons to Go to a Concert Amazing TechnoStar Word Search Making a Difference Format text

More information

The dot product and work

The dot product and work The dot product and work We ve seen already that vectors can be added and subtracted. There are also two useful ways vectors can be multiplied. The first of these is called the vector dot product, or just

More information

Descriptive Statistics (And a little bit on rounding and significant digits)

Descriptive Statistics (And a little bit on rounding and significant digits) Descriptive Statistics (And a little bit on rounding and significant digits) Now that we know what our data look like, we d like to be able to describe it numerically. In other words, how can we represent

More information

Periodic Graphs and Crystal Design

Periodic Graphs and Crystal Design Periodic Graphs and Crystal Design Gregory McColm Department of Mathematics & Statistics University of South Florida - Tampa Campus Tampa, FL 33620 http://www.math.usf.edu/~mccolm mccolm@cas.usf.edu 1

More information

Ch1 Algebra and functions. Ch 2 Sine and Cosine rule. Ch 10 Integration. Ch 9. Ch 3 Exponentials and Logarithms. Trigonometric.

Ch1 Algebra and functions. Ch 2 Sine and Cosine rule. Ch 10 Integration. Ch 9. Ch 3 Exponentials and Logarithms. Trigonometric. Ch1 Algebra and functions Ch 10 Integration Ch 2 Sine and Cosine rule Ch 9 Trigonometric Identities Ch 3 Exponentials and Logarithms C2 Ch 8 Differentiation Ch 4 Coordinate geometry Ch 7 Trigonometric

More information

Four Types of Motion We ll Study

Four Types of Motion We ll Study Four Types of Motion We ll Study The branch of mechanics that studies the motion of a body without caring about what caused the motion. Kinematics definitions Kinematics branch of physics; study of motion

More information

ACCUPLACER Sample Questions for Students

ACCUPLACER Sample Questions for Students ACCUPLACER Sample Questions for Students Math Sample Questions for Students (ANSWER KEYS ARE FOUND AT THE END OF THIS DOCUMENT) 0 The College Board. College Board, ACCUPLACER, WritePlacer and the acorn

More information

Essentials of Intermediate Algebra

Essentials of Intermediate Algebra Essentials of Intermediate Algebra BY Tom K. Kim, Ph.D. Peninsula College, WA Randy Anderson, M.S. Peninsula College, WA 9/24/2012 Contents 1 Review 1 2 Rules of Exponents 2 2.1 Multiplying Two Exponentials

More information

Introductory Analysis I Fall 2014 Homework #5 Solutions

Introductory Analysis I Fall 2014 Homework #5 Solutions Introductory Analysis I Fall 2014 Homework #5 Solutions 6. Let M be a metric space, let C D M. Now we can think of C as a subset of the metric space M or as a subspace of the metric space D (D being a

More information

Chapter 3. Math for Astronomy Review

Chapter 3. Math for Astronomy Review Chapter 3 Math for Astronomy Review Astronomy is very much a mathematical science. Astronomers cannot go out into the field like geologists. Nor can they do many tabletop experiments like physicists. Astronomers

More information

Introduction to Algebra: The First Week

Introduction to Algebra: The First Week Introduction to Algebra: The First Week Background: According to the thermostat on the wall, the temperature in the classroom right now is 72 degrees Fahrenheit. I want to write to my friend in Europe,

More information

The Pythagorean Theorem & Special Right Triangles

The Pythagorean Theorem & Special Right Triangles Theorem 7.1 Chapter 7: Right Triangles & Trigonometry Sections 1 4 Name Geometry Notes The Pythagorean Theorem & Special Right Triangles We are all familiar with the Pythagorean Theorem and now we ve explored

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

Recommender Systems. Dipanjan Das Language Technologies Institute Carnegie Mellon University. 20 November, 2007

Recommender Systems. Dipanjan Das Language Technologies Institute Carnegie Mellon University. 20 November, 2007 Recommender Systems Dipanjan Das Language Technologies Institute Carnegie Mellon University 20 November, 2007 Today s Outline What are Recommender Systems? Two approaches Content Based Methods Collaborative

More information

MITOCW ocw-18_02-f07-lec17_220k

MITOCW ocw-18_02-f07-lec17_220k MITOCW ocw-18_02-f07-lec17_220k The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high quality educational resources for free.

More information

Solutions to Selected Questions from Denis Sevee s Vector Geometry. (Updated )

Solutions to Selected Questions from Denis Sevee s Vector Geometry. (Updated ) Solutions to Selected Questions from Denis Sevee s Vector Geometry. (Updated 24--27) Denis Sevee s Vector Geometry notes appear as Chapter 5 in the current custom textbook used at John Abbott College for

More information

PAP Geometry Summer Assignment 2017

PAP Geometry Summer Assignment 2017 PAP Geometry Summer Assignment 2017 Name This assignment should be completed without the use of a calculator or an EOC chart. Show all work on separate paper for credit. A. Solve. Leave answers as improper

More information

Getting Started with Communications Engineering

Getting Started with Communications Engineering 1 Linear algebra is the algebra of linear equations: the term linear being used in the same sense as in linear functions, such as: which is the equation of a straight line. y ax c (0.1) Of course, if we

More information

Part II) Practice Problems

Part II) Practice Problems Part II) Practice Problems 1. Calculate the value of to the nearest tenth: sin 38 80 2. Calculate the value of y to the nearest tenth: y cos 52 80 3. Calculate the value of to the nearest hundredth: tan

More information

A Brief Guide to Our Cosmic Context

A Brief Guide to Our Cosmic Context A Brief Guide to Our Cosmic Context Todd Duncan (duncant@pdx.edu) PSU Center for Science Education last modified 11/21/08 There is a theory which states that if ever anyone discovers exactly what the Universe

More information

Second Grade: Unit 2: Properties of Matter. Matter solid liquid gas property

Second Grade: Unit 2: Properties of Matter. Matter solid liquid gas property Second Grade: Unit 2: Properties of Matter Matter solid liquid gas property Background: The universe is made of only two entities: matter and energy. Examples of energy are light, heat, and sound. Everything

More information

Force Vectors and Static Equilibrium

Force Vectors and Static Equilibrium Force Vectors 1 Force Vectors and Static Equilibrium Overview: In this experiment you will hang weights from pulleys over the edge of a small round force table, to exert various forces on a metal ring

More information

Pre-calculus is the stepping stone for Calculus. It s the final hurdle after all those years of

Pre-calculus is the stepping stone for Calculus. It s the final hurdle after all those years of Chapter 1 Beginning at the Very Beginning: Pre-Pre-Calculus In This Chapter Brushing up on order of operations Solving equalities Graphing equalities and inequalities Finding distance, midpoint, and slope

More information

Contents. 2 Lesson. Common Core State Standards. Lesson 1 Irrational Numbers Lesson 2 Square Roots and Cube Roots... 14

Contents. 2 Lesson. Common Core State Standards. Lesson 1 Irrational Numbers Lesson 2 Square Roots and Cube Roots... 14 Contents Common Core State Standards Lesson 1 Irrational Numbers.... 4 Lesson 2 Square Roots and Cube Roots... 14 Lesson 3 Scientific Notation... 24 Lesson 4 Comparing Proportional Relationships... 34

More information

Section 8.2 Vector Angles

Section 8.2 Vector Angles Section 8.2 Vector Angles INTRODUCTION Recall that a vector has these two properties: 1. It has a certain length, called magnitude 2. It has a direction, indicated by an arrow at one end. In this section

More information

4.5 Linearization Calculus 4.5 LINEARIZATION. Notecards from Section 4.5: Linearization; Differentials. Linearization

4.5 Linearization Calculus 4.5 LINEARIZATION. Notecards from Section 4.5: Linearization; Differentials. Linearization 4.5 Linearization Calculus 4.5 LINEARIZATION Notecards from Section 4.5: Linearization; Differentials Linearization The goal of linearization is to approximate a curve with a line. Why? Because it s easier

More information

(, ) : R n R n R. 1. It is bilinear, meaning it s linear in each argument: that is

(, ) : R n R n R. 1. It is bilinear, meaning it s linear in each argument: that is 17 Inner products Up until now, we have only examined the properties of vectors and matrices in R n. But normally, when we think of R n, we re really thinking of n-dimensional Euclidean space - that is,

More information