Estimating the Mass of Mount Everest

Size: px
Start display at page:

Download "Estimating the Mass of Mount Everest"

Transcription

1 Estimating the Mass of Mount Everest Mathematica is a great tool for exploring geographical objects such as deep ocean trenches, high mountains or even other planets. Here we will use its rich database to estimate the approximate mass of mount Everest. However, first we need to define what constitutes mount Everest. For me the coherence of the general procedure is more important rather than the specific area we would like to include as this could be recalibrated. For the purpose of the example, let s say that mount Everest is defined from 0m altitude up to the surface layer within a circle with a radius of 5km, centered at the peak. For our estimation, we will define the mass as the product of volume times the rock density. The slight variations in the gravitational force at sea level and at the higher altitudes will be ignored. Let s see how we could set up the problem: Step 1. Get the location and altitude data everest = GeoElevationData GeoDisk Entity "Mountain","MountEverest", Quantity 5,"Kilometers" ; Let s see the output in the form of an array: everest QuantityArray Dimensions: {16, 19} Unit: Meters There are 16 measurements in longitude and 19 in latitude. What this data tells us is that there is a vertical measurement every 5km/16= 312.5m and horizontal one every 5km/19=263.2m. It is not perfectly symmetric. To represent the whole surface we will perform an interpolation using all available points. Lastly, notice the units associated with the numbers. They slow down the computation, so we will keep them in mind but discard them from the estimation procedure which is performed by the following code: everest`no`units=quantitymagnitude[%3];

2 2 everest notes.nb Putting the data in matrix form: MatrixForm everest`no`units (*will be truncated a bit because of its size*) 5855.` 5775.` 5785.` 5868.` 6166.` 6792.` 7164.` 7084.` 7040.` 7060.` 6812.` 6501.` 6406.` 6367.` 6365.` 6483.` 6683.` 6536.` 6041.` 5845.` 5839.` 5906.` 6198.` 6804.` 7100.` 7279.` 7081.` 6744.` 6601.` 6512.` 6457.` 6437.` 6443.` 6471.` 6592.` 6670.` 6069.` 5903.` 5881.` 5917.` 6012.` 6318.` 6525.` 6741.` 6933.` 6793.` 6644.` 6606.` 6624.` 6744.` 6777.` 6551.` 6438.` 6315.` 5982.` 5942.` 5969.` 6016.` 6060.` 6131.` 6231.` 6479.` 6830.` 7108.` 7049.` 6985.` 7079.` 7181.` 6830.` 6357.` 6013.` 5806.` 6002.` 6226.` 6502.` 6317.` 6252.` 6322.` 6417.` 6681.` 7068.` 7411.` 7605.` 7610.` 7595.` 7424.` 6845.` 6301.` 5956.` 5873.` 6065.` 6601.` 6917.` 6831.` 6792.` 6906.` 7015.` 7205.` 7440.` 7729.` 8027.` 8045.` 7696.` 7340.` 6932.` 6503.` 6261.` 6119.` 6034.` 6592.` 7144.` 7204.` 7298.` 7359.` 7467.` 7668.` 7876.` 8132.` 8316.` 7854.` 7385.` 7006.` 6501.` 5964.` 5786.` 5773.` 6032.` 6352.` 6804.` 6916.` 6997.` 7140.` 7498.` 7925.` 8304.` 8536.` 8186.` 7650.` 7266.` 6892.` 6460.` 5950.` 5663.` 5510.` 6098.` 6183.` 6376.` 6478.` 6575.` 6734.` 7072.` 7551.` 8100.` 8499.` 8177.` 7697.` 7277.` 6874.` 6510.` 6048.` 5595.` 5471.` 6685.` 6385.` 6337.` 6359.` 6431.` 6510.` 6736.` 7150.` 7634.` 8088.` 8064.` 7656.` 7171.` 6656.` 6088.` 5769.` 5552.` 5467.` 7242.` 7122.` 7087.` 6811.` 6607.` 6589.` 6654.` 6888.` 7333.` 7744.` 7913.` 7571.` 7063.` 6522.` 5960.` 5620.` 5523.` 5486.` 6970.` 7442.` 7555.` 7221.` 6953.` 6791.` 6773.` 6945.` 7329.` 7723.` 8027.` 7726.` 7164.` 6518.` 5850.` 5633.` 5565.` 5519.` 6197.` 6868.` 7290.` 7541.` 7419.` 7262.` 7198.` 7267.` 7547.` 7915.` 8267.` 8182.` 7640.` 7043.` 6435.` 6083.` 6068.` 6115.` 5772.` 6303.` 6732.` 6862.` 7220.` 7243.` 7205.` 7323.` 7532.` 7601.` 7597.` 7704.` 8007.` 7838.` 7467.` 7259.` 7232.` 7002.` 5733.` 5991.` 6147.` 6204.` 6518.` 6654.` 6418.` 6317.` 6379.` 6463.` 6613.` 6887.` 7118.` 7408.` 7421.` 7246.` 7166.` 7026.` 5614.` 5542.` 5467.` 5541.` 5703.` 6076.` 6026.` 5755.` 5594.` 5642.` 5890.` 6252.` 6591.` 6862.` 6975.` 6754.` 6611.` 6629.` I like to think of such matrices in terms of contour maps, as the entry indices signify the spatial coordinates, while the entry itself is the height/output of some function. Before creating contour maps, let s use a discrete plot before doing any interpolations. ListPointPlot3D everest`no`units, Filling Bottom, ColorFunction "TemperatureMap", PlotTheme "Marketing", PlotLegends Automatic, Axes True, AxesLabel Style "longtitude",13, Black,"latitude",Style "height",13, Black, AxesStyle Directive[Black, 10]

3 everest notes.nb 3 Except for the height, the spatial coordinates are represented in a big chunks of meters, it is not normalized, but this should not worry us for the moment. ListPlot3D everest`no`units, Mesh Automatic, MeshFunctions {#3&}, ColorFunction ColorData["BeachColors"], PlotTheme "Marketing", PlotLegends Automatic, Axes True, AxesLabel Style "longtitude",13, Black,Style "latitude",13, Black, Style "height",13, Black, AxesStyle Directive[Black, 10]

4 4 everest notes.nb Let s do a contour map as well ListContourPlot everest`no`units, Mesh Automatic, MeshFunctions {#3&}, ColorFunction->"TemperatureMap", PlotTheme "Marketing", PlotLegends Automatic, FrameStyle Directive Black,Thick So, we have the graphical representation of the mountain region. Now we want to find some multivariable function that will fit the real data, and then use double integrals to compute the volume. interpolation1 = ListInterpolation everest`no`units InterpolatingFunction Domain: {{1., 16.}, {1., 19.}} Output: scalar This is not in the appropriate format to be plugged into a double integral yet, as we haven t given names to the spatial coordinates. Let us rewrite it and use x and y as variables for the integration. function = interpolation1[x,y] InterpolatingFunction Domain: {{1., 16.}, {1., 19.}} Output: scalar [x, y]

5 everest notes.nb 5 Now we have a general functional representation of the mountain terrain and can integrate it. The boundaries are defined in the rescaled units set by Mathematica. volume = NIntegrate function,{x,1,16},{y,1,19} This answer is nonsensical until we recalibrate it by multiplying by axis values by their values in terms of meters. Recall that 1x unit = 312.5m and 1y unit=263.2m I will just take the rough average of the two at about 290m. volume2 = 290*volume (* in m 3 cubic meters *) Lastly, in order to get the mass, we need to use the rock density as well. The average rock density in terms of cubic meters is 2650 kg m 3. rock`density = 2650; mass =rock`density * volume This is the approximate mass of the region (in kg) we defined as Everest. The result is more dependent on the definition used, but the approach has the benefit that applies the integration on an interpolated shape very close to the original, especially in comparison to perfect geometric figures as cones.

Worksheet 2.1: Introduction to Multivariate Functions (Functions of Two or More Independent Variables)

Worksheet 2.1: Introduction to Multivariate Functions (Functions of Two or More Independent Variables) Boise State Math 275 (Ultman) Worksheet 2.1: Introduction to Multivariate Functions (Functions of Two or More Independent Variables) From the Toolbox (what you need from previous classes) Know the meaning

More information

ATNS. USING Google EARTH. Version 1

ATNS. USING Google EARTH. Version 1 ATNS USING Google EARTH Version 1 ATNS/HO/Using Google Earth Page 1 25/04/2013 CONTENTS 1. BASIC SETUP 2. NAVIGATING IN GOOGLE EARTH 3. ADDING OBJECTS TO GOOGLE EARTH 4. USER HELP REFERENCES ATNS/HO/Using

More information

Navigation coordinate systems

Navigation coordinate systems Lecture 3 Navigation coordinate systems Topic items: 1. Basic Coordinate Systems. 2. Plane Cartesian Coordinate Systems. 3. Polar Coordinate Systems. 4. Earth-Based Locational Reference Systems. 5. Reference

More information

Parametric Curves, Polar Plots and 2D Graphics

Parametric Curves, Polar Plots and 2D Graphics Parametric Curves, Polar Plots and 2D Graphics Fall 2016 In[213]:= Clear "Global`*" 2 2450notes2_fall2016.nb Parametric Equations In chapter 9, we introduced parametric equations so that we could easily

More information

5 Applications of Definite Integrals

5 Applications of Definite Integrals 5 Applications of Definite Integrals The previous chapter introduced the concepts of a definite integral as an area and as a limit of Riemann sums, demonstrated some of the properties of integrals, introduced

More information

HydroperoxyCyclophosphamideDoses 0, 0.32`, 0.5`, 0.79`, 1.2`, 2, 3.2`, 5.07`, 8, 12.67`, 20;

HydroperoxyCyclophosphamideDoses 0, 0.32`, 0.5`, 0.79`, 1.2`, 2, 3.2`, 5.07`, 8, 12.67`, 20; In[1]:= HydroperoxyCyclophosphamideDoses 0, 0.32`, 0.5`, 0.79`, 1.2`, 2, 3.2`, 5.07`, 8, 12.67`, 20; In[2]:= In[3]:= VincristineDoses 0, 0.00032`, 0.000507`, 0.0008`, 0.00127`, 0.002`, 0.0032`, 0.00507`,

More information

USING THE DEFINITE INTEGRAL

USING THE DEFINITE INTEGRAL Print this page Chapter Eight USING THE DEFINITE INTEGRAL 8.1 AREAS AND VOLUMES In Chapter 5, we calculated areas under graphs using definite integrals. We obtained the integral by slicing up the region,

More information

Diocese of Boise Math Curriculum 5 th grade

Diocese of Boise Math Curriculum 5 th grade Diocese of Boise Math Curriculum 5 th grade ESSENTIAL Sample Questions Below: What can affect the relationshi p between numbers? What does a decimal represent? How do we compare decimals? How do we round

More information

Contour Analysis And Visualization

Contour Analysis And Visualization Contour Analysis And Visualization Objectives : stages The objectives of Contour Analysis and Visualization can be described in the following 1. To study and analyse the contour 2. Visualize the contour

More information

3.3 Optimizing Functions of Several Variables 3.4 Lagrange Multipliers

3.3 Optimizing Functions of Several Variables 3.4 Lagrange Multipliers 3.3 Optimizing Functions of Several Variables 3.4 Lagrange Multipliers Prof. Tesler Math 20C Fall 2018 Prof. Tesler 3.3 3.4 Optimization Math 20C / Fall 2018 1 / 56 Optimizing y = f (x) In Math 20A, we

More information

Geology and Calculus

Geology and Calculus GEOL 452 - Mathematical Tools in Geology Lab Assignment # 6 - Feb 25, 2010 (Due March 9, 2010) Name: Geology and Calculus A. Volume of San Nicolas Island San Nicolas Island is one of the remote and smaller

More information

Practice to Informatics for Energy and Environment

Practice to Informatics for Energy and Environment Practice to Informatics for Energy and Environment Part 3: Finite Elemente Method Example 1: 2-D Domain with Heat Conduction Tutorial by Cornell University https://confluence.cornell.edu/display/simulation/ansys+-+2d+steady+conduction

More information

6. Find the equation of the plane that passes through the point (-1,2,1) and contains the line x = y = z.

6. Find the equation of the plane that passes through the point (-1,2,1) and contains the line x = y = z. Week 1 Worksheet Sections from Thomas 13 th edition: 12.4, 12.5, 12.6, 13.1 1. A plane is a set of points that satisfies an equation of the form c 1 x + c 2 y + c 3 z = c 4. (a) Find any three distinct

More information

Number/Computation. addend Any number being added. digit Any one of the ten symbols: 0, 1, 2, 3, 4, 5, 6, 7, 8, or 9

Number/Computation. addend Any number being added. digit Any one of the ten symbols: 0, 1, 2, 3, 4, 5, 6, 7, 8, or 9 14 Number/Computation addend Any number being added algorithm A step-by-step method for computing array A picture that shows a number of items arranged in rows and columns to form a rectangle associative

More information

0 Graphical Analysis Use of Excel

0 Graphical Analysis Use of Excel Lab 0 Graphical Analysis Use of Excel What You Need To Know: This lab is to familiarize you with the graphing ability of excels. You will be plotting data set, curve fitting and using error bars on the

More information

SETTLEMENT OF A CIRCULAR FOOTING ON SAND

SETTLEMENT OF A CIRCULAR FOOTING ON SAND 1 SETTLEMENT OF A CIRCULAR FOOTING ON SAND In this chapter a first application is considered, namely the settlement of a circular foundation footing on sand. This is the first step in becoming familiar

More information

MATHEMATICS Key Stage 2 Year 6

MATHEMATICS Key Stage 2 Year 6 MATHEMATICS Key Stage 2 Year 6 Key Stage Strand Objective Child Speak Target Greater Depth Target [EXS] [KEY] Read, write, order and compare numbers up to 10 000 000 and determine the value of each digit.

More information

Spatial Variation of Physical Properties

Spatial Variation of Physical Properties LESSON 5 Spatial Variation of Physical Properties Aluminum Steel 45 Radius 1 Radius 3 Radius 4 Objective: To model the variation of physical properties as a function of spatial coordinates. MSC/NASTRAN

More information

Mathematics Year 9-11 Skills and Knowledge Checklist. Name: Class: Set : 4 Date Year 9 MEG :

Mathematics Year 9-11 Skills and Knowledge Checklist. Name: Class: Set : 4 Date Year 9 MEG : Personal targets to help me achieve my grade : AFL Sheet Number 1 : Integers, Decimals, Fractions Integers I can multiply single digit numbers (know my times tables) I can multiply and divide by a power

More information

Spatial Variation of Physical Properties

Spatial Variation of Physical Properties LESSON 13 Spatial Variation of Physical Properties Aluminum Steel 45 Radius 1 Radius 3 Radius 4 Objective: To model the variation of physical properties as a function of spatial coordinates. PATRAN301ExericseWorkbook-Release7.5

More information

CGWAVE Analysis SURFACE WATER MODELING SYSTEM. 1 Introduction

CGWAVE Analysis SURFACE WATER MODELING SYSTEM. 1 Introduction SURFACE WATER MODELING SYSTEM CGWAVE Analysis 1 Introduction This lesson will teach you how to prepare a mesh for analysis and run a solution for CGWAVE. You will start with the data file indiana.xyz which

More information

SeaSonde Configure Combine Processing

SeaSonde Configure Combine Processing SeaSonde Configure Combine Processing 144.01.1708.UG Aug 14, 2017 SeaSonde Configure Combine Processing SeaSondeCombineOptions configures how the transferred Radials and Ellipticals sources are combined

More information

Information for Parents/Carers. Mathematics Targets - A Year 1 Mathematician

Information for Parents/Carers. Mathematics Targets - A Year 1 Mathematician Mathematics Targets - A Year 1 Mathematician Number I can count reliably to 100. I can count on and back in 1s, 2s, 5s and 10s from any given number up to 100. I can write all numbers in words to 20. I

More information

Scalar Field Visualization I

Scalar Field Visualization I Scalar Field Visualization I What is a Scalar Field? The approximation of certain scalar function in space f(x,y,z). Image source: blimpyb.com f What is a Scalar Field? The approximation of certain scalar

More information

2

2 1 2 3 4 5 6 7 8 9 The inventor from the story used his knowledge of sequences to his advantage to gain riches. A sequence is a pattern involving an ordered arrangement of numbers, geometric figures, letters,

More information

Image Registration for Volume Measurement in 3D Range Data

Image Registration for Volume Measurement in 3D Range Data Image Registration for Volume Measurement in 3D Range Data Fernando Indurain Gaspar Matthew Thurley Lulea May 2011 2 Abstract At this report we will explain how we have designed an application based on

More information

1. Introduction to Constructive Solid Geometry (CSG)

1. Introduction to Constructive Solid Geometry (CSG) opyright@010, YZU Optimal Design Laboratory. All rights reserved. Last updated: Yeh-Liang Hsu (010-1-10). Note: This is the course material for ME550 Geometric modeling and computer graphics, Yuan Ze University.

More information

= 25)(10) 10. =

= 25)(10) 10. = 8.5 Volume of Rounded Objects A basic definition of volume is how much space an object takes up. Since this is a three-dimensional measurement, the unit is usually cubed. For example, we might talk about

More information

Section 1.1 The Distance and Midpoint Formulas

Section 1.1 The Distance and Midpoint Formulas Section 1.1 The Distance and Midpoint Formulas 1 y axis origin x axis 2 Plot the points: ( 3, 5), (0,7), ( 6,0), (6,4) 3 Distance Formula y x 4 Finding the Distance Between Two Points Find the distance

More information

Age Related Maths Expectations

Age Related Maths Expectations Step 1 Times Tables Addition Subtraction Multiplication Division Fractions Decimals Percentage & I can count in 2 s, 5 s and 10 s from 0 to 100 I can add in 1 s using practical resources I can add in 1

More information

Geometry: Notes

Geometry: Notes Geometry: 11.5-11.8 Notes NAME 11.5 Volumes of Prisms and Cylinders Date: Define Vocabulary: volume Cavalieri s Principle density similar solids Examples: Finding Volumes of Prisms 1 Examples: Finding

More information

Rotated earth or when your fantasy world goes up side down

Rotated earth or when your fantasy world goes up side down Rotated earth or when your fantasy world goes up side down A couple of weeks ago there was a discussion started if Fractal Terrain 3 (FT3) can rotate our earth. http://forum.profantasy.com/comments.php?discussionid=4709&page=1

More information

Year 6 Step 1 Step 2 Step 3 End of Year Expectations Using and Applying I can solve number problems and practical problems involving a range of ideas

Year 6 Step 1 Step 2 Step 3 End of Year Expectations Using and Applying I can solve number problems and practical problems involving a range of ideas Year 6 Step 1 Step 2 Step 3 End of Year Expectations Using and Applying I can solve number problems and practical problems involving a range of ideas Number Number system and counting Fractions and decimals

More information

Year 6 Step 1 Step 2 Step 3 End of Year Expectations Using and Applying I can solve number problems and practical problems involving a range of ideas

Year 6 Step 1 Step 2 Step 3 End of Year Expectations Using and Applying I can solve number problems and practical problems involving a range of ideas Year 6 Step 1 Step 2 Step 3 End of Year Expectations Using and Applying I can solve number problems and practical problems involving a range of ideas Number Number system and counting Fractions and decimals

More information

Year 1 End of Year Maths Targets. Pupil Name AUT 2 SPR 2 SPR 1 AUT 1 SUM 1 SUM 2 TARGETS

Year 1 End of Year Maths Targets. Pupil Name AUT 2 SPR 2 SPR 1 AUT 1 SUM 1 SUM 2 TARGETS Year End of Year Maths Targets Pupil Name Number and place value I can count to and across 00, forward and backwards,beginning with 0 or from any number. I can count in multiples of, 5 and 0. I can count,

More information

GRAPRISM. Version Markku Pirttijärvi

GRAPRISM. Version Markku Pirttijärvi GRAPRISM Version 1.1 2003 Markku Pirttijärvi Introduction: Gravity, the attraction force between masses, is one of the basic forces of the physical world. The objective of geophysical gravity method is

More information

3.Data Abstraction. Prof. Tulasi Prasad Sariki SCSE, VIT, Chennai 1 / 26

3.Data Abstraction. Prof. Tulasi Prasad Sariki SCSE, VIT, Chennai   1 / 26 3.Data Abstraction Prof. Tulasi Prasad Sariki SCSE, VIT, Chennai www.learnersdesk.weebly.com 1 / 26 Outline What can be visualized? Why Do Data Semantics and Types Matter? Data Types Items, Attributes,

More information

Points Lines Connected points X-Y Scatter. X-Y Matrix Star Plot Histogram Box Plot. Bar Group Bar Stacked H-Bar Grouped H-Bar Stacked

Points Lines Connected points X-Y Scatter. X-Y Matrix Star Plot Histogram Box Plot. Bar Group Bar Stacked H-Bar Grouped H-Bar Stacked Plotting Menu: QCExpert Plotting Module graphs offers various tools for visualization of uni- and multivariate data. Settings and options in different types of graphs allow for modifications and customizations

More information

EDINBURGH PRIMARY SCHOOL

EDINBURGH PRIMARY SCHOOL EDINBURGH PRIMARY SCHOOL TARGETS FOR THE NEW MATHEMATICS CURRICULUM Parent Information Edinburgh Primary School Assessment MATHEMATICS TARGETS - A YEAR 1 MATHEMATICIAN Number and place value I can count

More information

ANSYS AIM Tutorial Steady Flow Past a Cylinder

ANSYS AIM Tutorial Steady Flow Past a Cylinder ANSYS AIM Tutorial Steady Flow Past a Cylinder Author(s): Sebastian Vecchi, ANSYS Created using ANSYS AIM 18.1 Problem Specification Pre-Analysis & Start Up Solution Domain Boundary Conditions Start-Up

More information

Scalar Visualization

Scalar Visualization Scalar Visualization Visualizing scalar data Popular scalar visualization techniques Color mapping Contouring Height plots outline Recap of Chap 4: Visualization Pipeline 1. Data Importing 2. Data Filtering

More information

Maths Passport Knaphill School

Maths Passport Knaphill School V3 Maths Passport Knaphill School Name: DOB: 9. Globetrotters Date Achieved: Date Achieved: Date Achieved: Date Achieved: 10.First class travellers Date Achieved: Date Achieved: Date Achieved: Date Achieved:

More information

Assignment #4 Curvature-based interest operators, more spatial frequency filtering, and illusions

Assignment #4 Curvature-based interest operators, more spatial frequency filtering, and illusions Computational Vision U. Minn. Psy 5036 Assignment #4 Curvature-based interest operators, more spatial frequency filtering, and illusions Goals: 1) use symbolic processing to calculate a Hessian interest

More information

MATHEMATICS Grade 7 Advanced Standard: Number, Number Sense and Operations

MATHEMATICS Grade 7 Advanced Standard: Number, Number Sense and Operations Standard: Number, Number Sense and Operations Number and Number Systems A. Use scientific notation to express large numbers and numbers less than one. 1. Use scientific notation to express large numbers

More information

Expected Standards for Year 6: Mathematics Curriculum (taken from ncetm progression maps)

Expected Standards for Year 6: Mathematics Curriculum (taken from ncetm progression maps) Expected Standards for Year 6: Mathematics Curriculum (taken from ncetm progression maps) Place Value Addition and Subtraction Multiplication and Division Fractions Ratio and Proportion Measurement Geometry

More information

Slide 2 / 222. Algebra II. Quadratic Functions

Slide 2 / 222. Algebra II. Quadratic Functions Slide 1 / 222 Slide 2 / 222 Algebra II Quadratic Functions 2014-10-14 www.njctl.org Slide 3 / 222 Table of Contents Key Terms Explain Characteristics of Quadratic Functions Combining Transformations (review)

More information

Assignment 1. Prolog to Problem 1. Two cylinders. ü Visualization. Problems by Branko Curgus

Assignment 1. Prolog to Problem 1. Two cylinders. ü Visualization. Problems by Branko Curgus Assignment In[]:= Problems by Branko Curgus SetOptions $FrontEndSession, Magnification Prolog to Problem. Two cylinders In[]:= This is a tribute to a problem that I was assigned as an undergraduate student

More information

CK-12 Geometry: Surface Area and Volume of Spheres

CK-12 Geometry: Surface Area and Volume of Spheres CK-12 Geometry: Surface Area and Volume of Spheres Learning Objectives Find the surface area of a sphere. Find the volume of a sphere. Review Queue a. List three spheres you would see in real life. b.

More information

The Geometry of Solids

The Geometry of Solids CONDENSED LESSON 10.1 The Geometry of Solids In this lesson you will Learn about polyhedrons, including prisms and pyramids Learn about solids with curved surfaces, including cylinders, cones, and spheres

More information

CS/NEUR125 Brains, Minds, and Machines. Due: Wednesday, April 5

CS/NEUR125 Brains, Minds, and Machines. Due: Wednesday, April 5 CS/NEUR125 Brains, Minds, and Machines Lab 8: Using fmri to Discover Language Areas in the Brain Due: Wednesday, April 5 In this lab, you will analyze fmri data from an experiment that was designed to

More information

Terminal Falling Velocity of a Sand Grain

Terminal Falling Velocity of a Sand Grain Terminal Falling Velocity of a Sand Grain Introduction The first stop for polluted water entering a water work is normally a large tank, where large particles are left to settle. More generally, gravity

More information

Linear, Quadratic, Exponential, and Absolute Value Functions

Linear, Quadratic, Exponential, and Absolute Value Functions Linear, Quadratic, Exponential, and Absolute Value Functions Linear Quadratic Exponential Absolute Value Y = mx + b y = ax 2 + bx + c y = a b x y = x 1 What type of graph am I? 2 What can you tell me about

More information

Torsional-lateral buckling large displacement analysis with a simple beam using Abaqus 6.10

Torsional-lateral buckling large displacement analysis with a simple beam using Abaqus 6.10 Torsional-lateral buckling large displacement analysis with a simple beam using Abaqus 6.10 This document contains an Abaqus tutorial for performing a buckling analysis using the finite element program

More information

Make a TOPOGRAPHIC MAP

Make a TOPOGRAPHIC MAP How can you make a topographic map, and what information can you get from it? Activity Overview To build the Panama Canal, engineers dammed the Chagres River. In the process, new lakes were formed, a valley

More information

Worksheets for GCSE Mathematics. Volume and Surface Area. Mr Black's Maths Resources for Teachers GCSE 1-9. Shape

Worksheets for GCSE Mathematics. Volume and Surface Area. Mr Black's Maths Resources for Teachers GCSE 1-9. Shape Worksheets for GCSE Mathematics Volume and Surface Area Mr Black's Maths Resources for Teachers GCSE 1-9 Shape Volume & Surface Area Worksheets Contents Differentiated Independent Learning Worksheets Volume

More information

TRINITAS. a Finite Element stand-alone tool for Conceptual design, Optimization and General finite element analysis. Introductional Manual

TRINITAS. a Finite Element stand-alone tool for Conceptual design, Optimization and General finite element analysis. Introductional Manual TRINITAS a Finite Element stand-alone tool for Conceptual design, Optimization and General finite element analysis Introductional Manual Bo Torstenfelt Contents 1 Introduction 1 2 Starting the Program

More information

CHAPTER 4. Numerical Models. descriptions of the boundary conditions, element types, validation, and the force

CHAPTER 4. Numerical Models. descriptions of the boundary conditions, element types, validation, and the force CHAPTER 4 Numerical Models This chapter presents the development of numerical models for sandwich beams/plates subjected to four-point bending and the hydromat test system. Detailed descriptions of the

More information

Introduction to Distance Sampling. Automated Survey Design Exercises

Introduction to Distance Sampling. Automated Survey Design Exercises Introduction to Distance Sampling Automated Survey Design Exercises 1. Point transect survey of North-eastern Mexico Reviewing the data Extract and open the project MexicoUnPrj from the archive MexicoUnPrj.zip.

More information

4. Describe the correlation shown by the scatter plot. 8. Find the distance between the lines with the equations and.

4. Describe the correlation shown by the scatter plot. 8. Find the distance between the lines with the equations and. Integrated Math III Summer Review Packet DUE THE FIRST DAY OF SCHOOL The problems in this packet are designed to help you review topics from previous mathematics courses that are essential to your success

More information

Graph General Rational Functions. }} q(x) bn x n 1 b n 2 1. p(x) 5 a m x m 1 a m 2 1

Graph General Rational Functions. }} q(x) bn x n 1 b n 2 1. p(x) 5 a m x m 1 a m 2 1 TEKS 8.3 A.0.A, A.0.B, A.0.C, A.0.F Graph General Rational Functions Before You graphed rational functions involving linear polnomials. Now You will graph rational functions with higher-degree polnomials.

More information

Grade 9 Math Terminology

Grade 9 Math Terminology Unit 1 Basic Skills Review BEDMAS a way of remembering order of operations: Brackets, Exponents, Division, Multiplication, Addition, Subtraction Collect like terms gather all like terms and simplify as

More information

WHAT IS THE STRUVE GEODETIC ARC?

WHAT IS THE STRUVE GEODETIC ARC? WHAT IS THE STRUVE GEODETIC ARC? It has been known since ancient times that one can determine the height of any oblique triangle by knowing the exact length of one of its sides(the baseline) and two angles

More information

8.5 Volume of Rounded Objects

8.5 Volume of Rounded Objects 8.5 Volume of Rounded Objects A basic definition of volume is how much space an object takes up. Since this is a three-dimensional measurement, the unit is usually cubed. For example, we might talk about

More information

12 m. 30 m. The Volume of a sphere is 36 cubic units. Find the length of the radius.

12 m. 30 m. The Volume of a sphere is 36 cubic units. Find the length of the radius. NAME DATE PER. REVIEW #18: SPHERES, COMPOSITE FIGURES, & CHANGING DIMENSIONS PART 1: SURFACE AREA & VOLUME OF SPHERES Find the measure(s) indicated. Answers to even numbered problems should be rounded

More information

Goals: Course Unit: Describing Moving Objects Different Ways of Representing Functions Vector-valued Functions, or Parametric Curves

Goals: Course Unit: Describing Moving Objects Different Ways of Representing Functions Vector-valued Functions, or Parametric Curves Block #1: Vector-Valued Functions Goals: Course Unit: Describing Moving Objects Different Ways of Representing Functions Vector-valued Functions, or Parametric Curves 1 The Calculus of Moving Objects Problem.

More information

Input/Output Machines

Input/Output Machines UNIT 1 1 STUDENT BOOK / Machines LESSON Quick Review t Home c h o o l This is an / machine It can be used to make a growing pattern Each input is multiplied by 9 to get the output If you input 1, the output

More information

Surveying Prof. Bharat Lohani Indian Institute of Technology, Kanpur. Lecture - 1 Module - 6 Triangulation and Trilateration

Surveying Prof. Bharat Lohani Indian Institute of Technology, Kanpur. Lecture - 1 Module - 6 Triangulation and Trilateration Surveying Prof. Bharat Lohani Indian Institute of Technology, Kanpur Lecture - 1 Module - 6 Triangulation and Trilateration (Refer Slide Time: 00:21) Welcome to this another lecture on basic surveying.

More information

Matrix Transformations The position of the corners of this triangle are described by the vectors: 0 1 ] 0 1 ] Transformation:

Matrix Transformations The position of the corners of this triangle are described by the vectors: 0 1 ] 0 1 ] Transformation: Matrix Transformations The position of the corners of this triangle are described by the vectors: [ 2 1 ] & [4 1 ] & [3 3 ] Use each of the matrices below to transform these corners. In each case, draw

More information

FEMLAB Exercise 1 for ChE366

FEMLAB Exercise 1 for ChE366 FEMLAB Exercise 1 for ChE366 Problem statement Consider a spherical particle of radius r s moving with constant velocity U in an infinitely long cylinder of radius R that contains a Newtonian fluid. Let

More information

Rational Numbers: Graphing: The Coordinate Plane

Rational Numbers: Graphing: The Coordinate Plane Rational Numbers: Graphing: The Coordinate Plane A special kind of plane used in mathematics is the coordinate plane, sometimes called the Cartesian plane after its inventor, René Descartes. It is one

More information

Maths Curriculum Overview Year 1

Maths Curriculum Overview Year 1 Year 1 Count to and across 100, forwards and backwards beginning with 0 or one from any given number Count, read and write numbers to 100 in numerals, count in multiples of twos fives and tens Given a

More information

Computer Graphics Hands-on

Computer Graphics Hands-on Computer Graphics Hands-on Two-Dimensional Transformations Objectives Visualize the fundamental 2D geometric operations translation, rotation about the origin, and scale about the origin Learn how to compose

More information

Section a) f(x-3)+4 = (x 3) the (-3) in the parenthesis moves right 3, the +4 moves up 4

Section a) f(x-3)+4 = (x 3) the (-3) in the parenthesis moves right 3, the +4 moves up 4 Section 4.3 1a) f(x-3)+4 = (x 3) 2 + 4 the (-3) in the parenthesis moves right 3, the +4 moves up 4 Answer 1a: f(x-3)+4 = (x 3) 2 + 4 The graph has the same shape as f(x) = x 2, except it is shifted right

More information

Finite Element Analysis Prof. Dr. B. N. Rao Department of Civil Engineering Indian Institute of Technology, Madras. Lecture - 24

Finite Element Analysis Prof. Dr. B. N. Rao Department of Civil Engineering Indian Institute of Technology, Madras. Lecture - 24 Finite Element Analysis Prof. Dr. B. N. Rao Department of Civil Engineering Indian Institute of Technology, Madras Lecture - 24 So in today s class, we will look at quadrilateral elements; and we will

More information

Unit Circle. Project Response Sheet

Unit Circle. Project Response Sheet NAME: PROJECT ACTIVITY: Trigonometry TOPIC Unit Circle GOALS MATERIALS Explore Degree and Radian Measure Explore x- and y- coordinates on the Unit Circle Investigate Odd and Even functions Investigate

More information

Number Mulitplication and Number and Place Value Addition and Subtraction Division

Number Mulitplication and Number and Place Value Addition and Subtraction Division Number Mulitplication and Number and Place Value Addition and Subtraction Division read, write, order and compare numbers up to 10 000 000 and determine the value of each digit round any whole number to

More information

Review for Quarter 3 Cumulative Test

Review for Quarter 3 Cumulative Test Review for Quarter 3 Cumulative Test I. Solving quadratic equations (LT 4.2, 4.3, 4.4) Key Facts To factor a polynomial, first factor out any common factors, then use the box method to factor the quadratic.

More information

EMIGMA V9.x Premium Series April 8, 2015

EMIGMA V9.x Premium Series April 8, 2015 EMIGMA V9.x Premium Series April 8, 2015 EMIGMA for Gravity EMIGMA for Gravity license is a comprehensive package that offers a wide array of processing, visualization and interpretation tools. The package

More information

New Swannington Primary School 2014 Year 6

New Swannington Primary School 2014 Year 6 Number Number and Place Value Number Addition and subtraction, Multiplication and division Number fractions inc decimals & % Ratio & Proportion Algebra read, write, order and compare numbers up to 0 000

More information

Geometric Design Estimated (Perimeter) Calculated (Perimeter) Alligator 40 cm 35 cm. Goat 49 cm 47.5 cm. Inchworm 53 cm 45 cm. Duck 54.

Geometric Design Estimated (Perimeter) Calculated (Perimeter) Alligator 40 cm 35 cm. Goat 49 cm 47.5 cm. Inchworm 53 cm 45 cm. Duck 54. 1 TASK 2.1.1: WHAT S THE PERIMETER? Solutions Directions: Examining each of the geometric animal shapes on the handout, estimate to the nearest five-tenths of a centimeter the perimeter of each animal

More information

Introduction to Google Earth

Introduction to Google Earth Introduction to Google Earth Assignment: The goal of this assignment is for you to become familiar with Google Earth. You may work alone or with a partner but you must turn in your own individual work.

More information

Chapter 23. Linear Motion Motion of a Bug

Chapter 23. Linear Motion Motion of a Bug Chapter 23 Linear Motion The simplest example of a parametrized curve arises when studying the motion of an object along a straight line in the plane We will start by studying this kind of motion when

More information

Lecture overview. Visualisatie BMT. Vector algorithms. Vector algorithms. Time animation. Time animation

Lecture overview. Visualisatie BMT. Vector algorithms. Vector algorithms. Time animation. Time animation Visualisatie BMT Lecture overview Vector algorithms Tensor algorithms Modeling algorithms Algorithms - 2 Arjan Kok a.j.f.kok@tue.nl 1 2 Vector algorithms Vector 2 or 3 dimensional representation of direction

More information

QUICK FORECASTING OF TSUNAMI IN BALI AND NUSA TENGGARA REGIONS, BASED ON THE TSUNAMI DATABASE SYSTEM

QUICK FORECASTING OF TSUNAMI IN BALI AND NUSA TENGGARA REGIONS, BASED ON THE TSUNAMI DATABASE SYSTEM QUICK FORECASTING OF TSUNAMI IN BALI AND NUSA TENGGARA REGIONS, BASED ON THE TSUNAMI DATABASE SYSTEM Titi HANDAYANI MEE0874 Supervisor: Yushiro FUJII ABSTRACT Tsunami database in Bali and Nusa Tenggara

More information

Presents. The Common Core State Standards Checklist Grades 3-5

Presents. The Common Core State Standards Checklist Grades 3-5 Presents The Common Core State Standards Checklist Grades 3-5 Third Grade Common Core State Standards Third Grade: Operations and Algebraic Thinking Represent and Solve problems involving Multiplication

More information

Predicting the mechanical behaviour of large composite rocket motor cases

Predicting the mechanical behaviour of large composite rocket motor cases High Performance Structures and Materials III 73 Predicting the mechanical behaviour of large composite rocket motor cases N. Couroneau DGA/CAEPE, St Médard en Jalles, France Abstract A method to develop

More information

Southern York County School District

Southern York County School District Southern York County School District Course/Subject: Math Comprehensive Grade Level: 5 One Warrior at a Time Textbook(s)/Materials Used: Ready Pennsylvania Math Instruction, Practice Problem Solving, Assessment,

More information

OpenStax-CNX module: m The Ellipse. OpenStax College. Abstract

OpenStax-CNX module: m The Ellipse. OpenStax College. Abstract OpenStax-CNX module: m49438 1 The Ellipse OpenStax College This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License 4.0 In this section, you will: Write equations

More information

Y6 MATHEMATICS TERMLY PATHWAY NUMBER MEASURE GEOMETRY STATISTICS

Y6 MATHEMATICS TERMLY PATHWAY NUMBER MEASURE GEOMETRY STATISTICS Autumn Number & Place value read, write, order and compare numbers up to 10 000 000 and determine the value of each digit round any whole number to a required degree of accuracy use negative numbers in

More information

Data Representation in Visualisation

Data Representation in Visualisation Data Representation in Visualisation Visualisation Lecture 4 Taku Komura Institute for Perception, Action & Behaviour School of Informatics Taku Komura Data Representation 1 Data Representation We have

More information

My Target Level 1c. My areas for development:

My Target Level 1c. My areas for development: My Target Level 1c I can read numbers up to 10 (R) I can count up to 10 objects (R) I can say the number names in order up to 20 (R) I can write at least 4 numbers up to 10. When someone gives me a small

More information

SFU CMPT 361 Computer Graphics Fall 2017 Assignment 2. Assignment due Thursday, October 19, 11:59pm

SFU CMPT 361 Computer Graphics Fall 2017 Assignment 2. Assignment due Thursday, October 19, 11:59pm SFU CMPT 361 Computer Graphics Fall 2017 Assignment 2 Assignment due Thursday, October 19, 11:59pm For this assignment, you are to interpret a 3D graphics specification language, along with doing some

More information

Chapter 11: Measurement of Figures and Solids Part B

Chapter 11: Measurement of Figures and Solids Part B Chapter 11: Measurement of Figures and Solids Part B Surface Area of Prisms & Cylinders What is surface area? Is it: Cushions on sofa being re-stuffed with material? Old sofa getting recovered? Manufacturer

More information

Grade 6 Math Circles. Spatial and Visual Thinking

Grade 6 Math Circles. Spatial and Visual Thinking Faculty of Mathematics Waterloo, Ontario N2L 3G1 Introduction Grade 6 Math Circles October 31/November 1, 2017 Spatial and Visual Thinking Centre for Education in Mathematics and Computing One very important

More information

3D Design with 123D Design

3D Design with 123D Design 3D Design with 123D Design Introduction: 3D Design involves thinking and creating in 3 dimensions. x, y and z axis Working with 123D Design 123D Design is a 3D design software package from Autodesk. A

More information

Module 4. Stereographic projection: concept and application. Lecture 4. Stereographic projection: concept and application

Module 4. Stereographic projection: concept and application. Lecture 4. Stereographic projection: concept and application Module 4 Stereographic projection: concept and application Lecture 4 Stereographic projection: concept and application 1 NPTEL Phase II : IIT Kharagpur : Prof. R. N. Ghosh, Dept of Metallurgical and Materials

More information

Triple Integrals: Setting up the Integral

Triple Integrals: Setting up the Integral Triple Integrals: Setting up the Integral. Set up the integral of a function f x, y, z over the region above the upper nappe of the cone z x y from z to z. Use the following orders of integration: d x

More information

How to climb a mountain?

How to climb a mountain? The 23 rd ECMI Modelling Week European Student Workshop on Mathematical Modelling in Industry and Commerce Wrocław University of Technology, Wrocław, Poland, August 23-30, 2009 Report of project group

More information

Gravity Methods (VII) wrap up

Gravity Methods (VII) wrap up Environmental and Exploration Geophysics II Gravity Methods (VII) wrap up tom.h.wilson tom.wilson@mail.wvu.edu Department of Geology and Geography West Virginia University Morgantown, WV Items on the list

More information

Sec 4.1 Coordinates and Scatter Plots. Coordinate Plane: Formed by two real number lines that intersect at a right angle.

Sec 4.1 Coordinates and Scatter Plots. Coordinate Plane: Formed by two real number lines that intersect at a right angle. Algebra I Chapter 4 Notes Name Sec 4.1 Coordinates and Scatter Plots Coordinate Plane: Formed by two real number lines that intersect at a right angle. X-axis: The horizontal axis Y-axis: The vertical

More information