Chapter 2 Excel Fundamentals

Slides:



Advertisements
Similar presentations
Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. Chapter Four Trusses.
Advertisements

Introduction to Excel Chapter 2 Excel Fundamentals Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display.
Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. Chapter 4 Image Slides.
Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. Chapter 2 Image Slides.
Chapter 8 Traffic-Analysis Techniques. Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 8-1.
Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. Chapter 7.
Chapter 13 Transportation Demand Analysis. Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display
Introduction to Algorithms Second Edition by
Introduction to Algorithms Second Edition by
Chapter 7 Matrix Mathematics
Chapter 10 Image Slides Title
PowerPoint Presentation Materials Transportation Engineering
Accuracy and Precision
Chapter 4 MATLAB Programming
PowerPoint Presentations
Copyright © The McGraw-Hill Companies, Inc
Chapter 3 Image Slides Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display.
Transparency A.
Introduction to Algorithms Second Edition by
CHEMISTRY Chapter 4 Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display.
CHEMISTRY Chapter 6 Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display.
Chapter 3 Image Slides Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display.
Chapter 8 Image Slides Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display.
Discrete Mathematics and Its Applications Chapter 7 Images
Chapter 11 Image Slides Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display.
Copyright © 2004 The McGraw-Hill Companies, Inc. All rights reserved.
Plotting Data with MATLAB
Chapter R A Review of Basic Concepts and Skills
Introduction to Algorithms Second Edition by
Copyright ©2014 The McGraw-Hill Companies, Inc
Chapter 7 Image Slides Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display.
CHEMISTRY Chapter 3 Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display.
Applied Numerical Methods
Introduction to Algorithms Second Edition by
Chapter 1 Introduction Copyright © 2013 The McGraw-Hill Companies, Inc. Permission required for reproduction or display.
Copyright © 2004 The McGraw-Hill Companies, Inc. All rights reserved.
Assignment Pages: 10 – 12 (Day 1) Questions over Assignment? # 1 – 4
Introduction to Algorithms Second Edition by
Chapter R.2 A Review of Basic Concepts and Skills
Chapter 12 Image Slides Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display.
CHEMISTRY Chapter 1 Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display.
Introduction to Algorithms Second Edition by
Introduction to Algorithms Second Edition by
Chapter 5 Foundations in Microbiology Fourth Edition
Copyright © 2004 The McGraw-Hill Companies, Inc. All rights reserved.
Introduction to Algorithms Second Edition by
Introduction to Algorithms Second Edition by
Title Chapter 22 Image Slides
CHEMISTRY Chapter 7 Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display.
Chapter 21 Image Slides* *See PowerPoint Lecture Outline for a complete ready-made presentation integrating art and lecture notes Copyright © The.
Chapter 3 Foundations in Microbiology Fourth Edition
Copyright © The McGraw-Hill Companies, Inc
Copyright © 2004 The McGraw-Hill Companies, Inc. All rights reserved.
Introduction to Algorithms Second Edition by
CHAPTER 6 SKELETAL SYSTEM
Copyright © 2004 The McGraw-Hill Companies, Inc. All rights reserved.
CHEMISTRY Chapter 9 Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display.
Introduction to Algorithms Second Edition by
CHEMISTRY Chapter 5 Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display.
Journey to the Cosmic Frontier
Chapter 1 Introduction Data Communication Networks
Journey to the Cosmic Frontier
Discrete Mathematics and Its Applications Chapter 7 Images
Journey to the Cosmic Frontier
Copyright © 2004 The McGraw-Hill Companies, Inc. All rights reserved.
CHEMISTRY Chapter 8 Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display.
Chapter 24 Image Slides* *See PowerPoint Lecture Outline for a complete ready-made presentation integrating art and lecture notes Copyright © The.
Copyright © 2004 The McGraw-Hill Companies, Inc. All rights reserved.
Chapter 3 Introduction to Physical Design of Transportation Facilities.
Introduction to Algorithms Second Edition by
Presentation transcript:

Chapter 2 Excel Fundamentals Linear Interpolation Chapter 2 Excel Fundamentals Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 1

Population Example The population data of a town is given in the table We maywant to estimate the population in any year: 1995, 1983, etc. Engineering Computation: An Introduction Using MATLAB and Excel 2

Linear Interpolation With linear interpolation, we assume that our data varies linearly between data points: Engineering Computation: An Introduction Using MATLAB and Excel 3

Formula for Linear Interpolation Point x falls between x1 and x2. The y-values corresponding to x1 and x2 are given (y1 and y2, respectively). Find the y value corresponding to x. x1 x2 y2 y1 x y Engineering Computation: An Introduction Using MATLAB and Excel 4

Formula for Linear Interpolation Engineering Computation: An Introduction Using MATLAB and Excel 5

Population Example y2 = 4086 y y1 = 3012 x = x1 = 1950 x2 = 1960 1956 Engineering Computation: An Introduction Using MATLAB and Excel 6

Linear Interpolation Description (increase in x) * slope + starting y value (y1) increase in x = x – x1 slope = (y2 – y1)/(x2 – x1) If population = 7000 (y1) in 2000 (x1) 8000 (y2) in 2010 (x2) Population in 2008 = (2008 – 2000)*(8000 – 7000)/(2010 - 2000) +7000 8*(1000/10) + 7000 8*100 + 7000 7800 Engineering Computation: An Introduction Using MATLAB and Excel 7