Physicist's Introduction to Mathematica

Size: px
Start display at page:

Download "Physicist's Introduction to Mathematica"

Transcription

1 Physicist's Introduction to Mathematica Physics 200 Physics 50 Lab Revised for V6.0 Fall Semester 2000 Spring Semester 2006 Summer 2007 Nicholas Wheeler John Boccio John Boccio REED COLLEGE Swarthmore College Swarthmore College V4.0 Revised for V5.0 Laboratory 1 Part A Basic Graphics Pen-&-ink mathematicians have traditionally found graphics so labor intensive that they have tended to avoid figures whenever possible and, when a figure could not be avoided, to make do with a merely qualitative representation of the points at issue. Figures have tended to see service only as expository devices, used to express what was already known, and seldom to be used as aids to discovery. Mathematica makes the production of accurate figures~of many types~so quick and easy that it should/will become your habit to look to the graphical aspects of problems before you have fully understood them. The graphical aspects of your mathematical work will assume enlarged importance. Graphics~formerly an expository device~has become an exploratory tool. Resources Your principal resource is at your fingertips. Open Help > Find Selected Function > Visualization and Graphics, then look around to see what I mean. Basic graphics commands are simple and commonsensical, but you should be aware that if you go to File > Palettes > Plotting you will find buttons that produce things like Plot[,{,, }], and so remind you of the required syntax, and help you to get all the brackets and punctuation just right (Mathematica is unforgiving in those respects!). Your favorite Mathematica text is certain to contain a long/detailed graphics section. Keep a My Graphics notebook, recording your successful accomplishments; it is likely to become your primary reference, especially with regard to the correct management of the numerous "options" which are the main source of confusion in this area.

2 2 Laboratory 1A.nb Simple Plotting In[2]:=? Plot First Example: In[3]:= 8x, 0, 20<D Notice that Mathematica has no trouble at all with the infinities. Notice also that the output consists not of the figure, but of the not-too-informative expression -Graphics-. That output can be surpressed by appending a ; to our original command (try it). We will henceforth adopt that practice. We look now to a few basic elaborations of the preceding basic command: In[4]:= In[5]:= In[6]:= In[7]:= In[8]:= In[9]:= In[10]:= In[11]:= In[12]:= In[13]:= Plot@Tan@xD, 8x, 0, 20<, Frame Ø TrueD? Frame Plot@Tan@xD, 8x, 0, 20<, Frame Ø True, FrameTicks Ø 8Range@0, 6 p, pd, Automatic, None, None<D? FrameTicks? Range Plot@Tan@xD, 8x, 0, 13 p ê 2<, Frame Ø True, FrameTicks Ø 8Range@0, 6 p, pd, Automatic, None, None<, PlotStyle Ø 8AbsoluteThickness@2D<D Plot@Tan@xD, 8x, 0, 13 p ê 2<, Frame Ø True, FrameTicks Ø 8Range@0, 6 p, pd, Automatic, None, None<, PlotStyle Ø 8RGBColor@0.2, 0, 0.8D, Thickness@0.007D<D? RGBColor H*See the Color Charts, mentioned above*l? Thickness?? AbsoluteThickness REMARK: "Absolute thickness" is measured in printer's points (multiples of about 1/72nd of an inch). Second Example: In[14]:= PlotASin@tD -tê10, 8t, 0, 20 p<e Mathematica tries to show "the interesting part" of a figure, with the result that it has here clipped off some detail. I give two ways to override that defect: In[15]:= PlotASin@tD -tê10, 8t, 0, 20 p<, PlotRange Ø AllE

3 Laboratory 1A.nb 3 In[16]:= PlotASin@tD -tê10, 8t, 0, 20 p<, PlotRange Ø 8-1, 1<E Third Example: This example, borrowed provides a taste of "graphical discover/exploration." In[17]:= Plot@Sin@xD + ArcSin@xD, 8x, -0.85, 0.85<, Frame -> True, FrameTicks Ø , 0.8<, 8-1, 0, 1<, None, None<D The graph is remarkable for its unexpected linearity. To gain a sense of how linear it truly is, we might proceed as follows: In[18]:= In[19]:= Clear@aD a = Sin@.5D + ArcSin@.5D In[20]:= linear@x_d := ạ 5 x H*Equation of straight line passing through a couple of selected points: the origin and the point H0.5,aL*L In[21]:= Plot@8Sin@xD + ArcSin@xD, linear@xd<, 8x, -0.85, 0.85<, Frame -> True, FrameTicks Ø , 0.8<, 8-1, 0, 1<, None, None<D which reveals a slight departure from linearity at the ends. The mystery is explained when we enter In[22]:= Series@Sin@xD + ArcSin@xD, 8x, 0, 15<D and discover that the Maclaurin expansion has no terms of orders 2, 3, or 4. We made first use here of the following resource: In[23]:=? Series The dangling O@xD 16 is an uninformative annoyance, but is easily avoided: In[24]:= Series@Sin@xD + ArcSin@xD, 8x, 0, 7<D êê Normal FilledPlot Consider the following function In[25]:= sechsquared@x_d := 1 2 Sech@xD2 has all the properties required of a probability distribution In[26]:= - In[27]:= - In[28]:= - sechsquared@xd x x sechsquared@xd x x 2 sechsquared@xd x

4 4 Laboratory 1A.nb and when plotted looks very Gaussian (or "normal"): In[29]:= 8x, -4, 4<D Direct visual comparison with the Gaussian with the same variance is enhanced if one makes use of a resource provided as a Standard Add-On: In[30]:= gaussian@x_, s_d := s 1 2 p ExpB- 1 2 x s 2 F In[32]:= PlotB:sechsquared@xD, gaussianbx, p2 F>, 8x, -4, 4<, Filling Ø 81 Ø 82<<F 12 Polar Plot Not infrequently the result of physical calculation lends itself better to polar than to Cartesian graphical representation. For example, the theory of planetary motion (Kepler problem) leads to an equation of the form constant r = 1 + eccentricity µ cos HqL The relevant software is provided as an add-on to Mathematica: In[33]:= In[34]:= In[35]:= Needs@"BarCharts`"D; Needs@"Histograms`"D; Needs@"PieCharts`"D? PolarPlot 1 PolarPlotB, 8q, 0, 2 p<f Cos@qD Slight adjustment causes the orbit to precess: In[36]:= 1 PolarPlotB, 8q, 0, 20 p<f Cos@1.01 qd Try these further examples of polar plots: In[37]:= In[38]:= PolarPlotA9t, t 1.1, t 1.2 =, 8t, 0, 2 p<e PolarPlot@Sin@5 qd, 8q, 0, 2 p<d List Plot In[39]:=? ListPlot The familiar Fibonacci numbers are available as a built-in resource: In[40]:= In[41]:=? Fibonacci Fibonacci@50D Make a table of the first 10 Fibonacci numbers

5 Laboratory 1A.nb 5 In[42]:= fib = Table@Fibonacci@nD, 8n, 10<D and use ListPlot to display that data graphically: In[43]:= ListPlot@fib, GridLines Ø Automatic, Prolog Ø AbsolutePointSize@5DD Note the techniques used to turn on the grid lines, and to adjust the point size. Parametric Plot In[44]:=? ParametricPlot First Example: Simple Cycloid A circle of unit radius rolls along the x-axis. We are interest in the curve traced by a point P marked on the circumference of the circle. Working from a sketch, we are led to define In[45]:= In[47]:= x@q_d := q - Sin@qD y@q_d := 1 - Cos@qD ParametricPlot@8x@qD, y@qd<, 8q, 0, 6 p<d The figure is misleading because different scales are used on the two axes; we now correct that defect, place the frame ticks at more natural places, and highlight the curve itself: In[48]:= ParametricPlot@8x@qD, y@qd<, 8q, 0, 4 p<, AspectRatio Ø Automatic, Frame Ø True, FrameTicks Ø 880, 2 p, 4 p<, 80, 1, 2<, None, None<, PlotStyle Ø 8RGBColor@0, 0, 1D, Thickness@0.007D< D NOTE: Sometimes Mathematica produces a figure that is unaccountably tiny. In such cases, click on the figure and drag the handles (now visible) to rescale the figure. "Hypocycloids" and "hypercycloids" result when the point P is placed interior/exterior to the unit circle. Here we make the appropriate modifications: In[49]:= In[50]:= In[52]:= Clear@rD x@q_, r_d := q - r Sin@qD y@q_, r_d := 1 - r Cos@qD ParametricPlot@88x@q, 0.5D, y@q, 0.5D<, 8x@q, 1.0D, y@q, 1.0D<, 8x@q, 1.5D, y@q, 1.5D<<, 8q, 0, 4 p<, AspectRatio Ø Automatic, Frame Ø True, FrameTicks Ø 880, 2 p, 4 p<, 80, 1, 2<, None, None<, PlotStyle Ø 8RGBColor@1, 0, 0D, 8<, RGBColor@0, 0, 1D<D Second Example: Epicycles A wheel of given radius turns with given angular velocity. Pinned at its circumference is a second wheel of given radius that turns with given angular velocity. And pinned to its circumference is a third wheel. Etc. We are interested in the motion of a point marked on the circircircumference of the last wheel.

6 6 Laboratory 1A.nb In[53]:= ParametricPlotBEvaluateB Cos@7 qd, Sin@7 qd< :CosB-17 q + p 2 F, SinB-17 q + p 2 F>F, 8q, 0, 2 p<, AspectRatio Ø Automatic, Frame Ø TrueF Adjustment of the numerics would, of course, result in different curves. It is not immediately obvious why the present numerics (1, 7 & 17) generate 6-fold symmetry. Note the use here of In[54]:=? Evaluate without which the argument of ParametricPlot[]would not be a list {,}, as it is required to be. Third Example: Lissajous Figures The following construction is familiar to anyone who has ever played with an oscilloscope: In[55]:= In[56]:= In[58]:= In[59]:= Clear@a, b, x, yd x@t_, a_, a_d := a Cos@a td y@t_, b_, b_, d_d := b Cos@b t + dd ParametricPlot@8x@t, 2, 2D, y@t, 1, 3.00, p ê 2D<, 8t, 0, 16 p<, AspectRatio Ø AutomaticD ParametricPlot@8x@t, 2, 2D, y@t, 1, 3.01, p ê 2D<, 8t, 0, 16 p<, AspectRatio Ø AutomaticD Fourth Example: Cornu Spiral The Cornu integrals arise in physical optics (diffraction theory). The following pretty figure involves some pretty heavy calculation; we'll ask Mathematica how long it takes. t t In[60]:= cornu@t_d := : 0 SinAu 2 E u, 0 CosAu 2 E u> In[61]:= ParametricPlot@Evaluate@cornu@tDD, 8t, -10, 10<, AspectRatio Ø AutomaticD êê Timing Now Save, Quit, and in a freshly opened Mathematica proceed to Part B.

Physicist's Introduction to Mathematica

Physicist's Introduction to Mathematica Physicist's Introduction to Mathematica Laboratory 6 Part B Fitting Curves to Data Preliminary Remarks It is increasingly rare for your activity in the laboratory to be describable as "hands-on" production

More information

Chapter 11 Parametric Equations, Polar Curves, and Conic Sections

Chapter 11 Parametric Equations, Polar Curves, and Conic Sections Chapter 11 Parametric Equations, Polar Curves, and Conic Sections ü 11.1 Parametric Equations Students should read Sections 11.1-11. of Rogawski's Calculus [1] for a detailed discussion of the material

More information

Bilinear Transformations via a Computer Algebra System

Bilinear Transformations via a Computer Algebra System Bilinear Transformations via a Computer Algebra System Tilak de Alwis talwis@selu.edu Department of Mathematics Southeastern Louisiana University Hammond, LA 70403 USA Abstract: In this paper, we will

More information

Problem Set 5 Solution

Problem Set 5 Solution Problem Set 5 Solution Friday, 14 October 011 Physics 111 Proble The Setup For a pair of point masses, and m, interacting via a conservative force directed along the line joining the masses, show that

More information

Calculus of Vector-Valued Functions

Calculus of Vector-Valued Functions Chapter 3 Calculus of Vector-Valued Functions Useful Tip: If you are reading the electronic version of this publication formatted as a Mathematica Notebook, then it is possible to view 3-D plots generated

More information

Mathematica for Calculus II (Version 9.0)

Mathematica for Calculus II (Version 9.0) Mathematica for Calculus II (Version 9.0) C. G. Melles Mathematics Department United States Naval Academy December 31, 013 Contents 1. Introduction. Volumes of revolution 3. Solving systems of equations

More information

Introduction to Mathematica and Graphing in 3-Space

Introduction to Mathematica and Graphing in 3-Space 1 Mathematica is a powerful tool that can be used to carry out computations and construct graphs and images to help deepen our understanding of mathematical concepts. This document will serve as a living

More information

Mathematica Project, Math21b Spring 2008

Mathematica Project, Math21b Spring 2008 Mathematica Project, Math21b Spring 2008 Oliver Knill, Harvard University, Spring 2008 Support Welcome to the Mathematica computer project! In case problems with this assignment, please email Oliver at

More information

Differentiation 1. The METRIC Project, Imperial College. Imperial College of Science Technology and Medicine, 1996.

Differentiation 1. The METRIC Project, Imperial College. Imperial College of Science Technology and Medicine, 1996. Differentiation 1 The METRIC Project, Imperial College. Imperial College of Science Technology and Medicine, 1996. 1 Launch Mathematica. Type

More information

= 3, the vertical velocty is. (x(t), y(t)) = (1 + 3t, 2 + 4t) for t [0, 1],

= 3, the vertical velocty is. (x(t), y(t)) = (1 + 3t, 2 + 4t) for t [0, 1], Math 133 Parametric Curves Stewart 10.1 Back to pictures! We have emphasized four conceptual levels, or points of view on mathematics: physical, geometric, numerical, algebraic. The physical viewpoint

More information

Open the TI-Nspire file: Astroid. Navigate to page 1.2 of the file. Drag point A on the rim of the bicycle wheel and observe point P on the rim.

Open the TI-Nspire file: Astroid. Navigate to page 1.2 of the file. Drag point A on the rim of the bicycle wheel and observe point P on the rim. Astroid Student Activity 7 9 TI-Nspire Investigation Student min Introduction How is the motion of a ladder sliding down a wall related to the motion of the valve on a bicycle wheel or to a popular amusement

More information

Astronomy Using scientific calculators

Astronomy Using scientific calculators Astronomy 113 - Using scientific calculators 0. Introduction For some of the exercises in this lab you will need to use a scientific calculator. You can bring your own, use the few calculators available

More information

Updated 2013 (Mathematica Version) M1.1. Lab M1: The Simple Pendulum

Updated 2013 (Mathematica Version) M1.1. Lab M1: The Simple Pendulum Updated 2013 (Mathematica Version) M1.1 Introduction. Lab M1: The Simple Pendulum The simple pendulum is a favorite introductory exercise because Galileo's experiments on pendulums in the early 1600s are

More information

Notes on the Unicycle Puzzle (PoW 1248)

Notes on the Unicycle Puzzle (PoW 1248) Notes on the Unicycle Puzzle (PoW 248) Stan Wagon, wagon@macalester.edu, Sept. 207. The basic idea here is due to David Finn. Here are papers on the subject. D. Finn, Can a bicycle create a unicycle track,

More information

Stability of critical points in Linear Systems of Ordinary Differential Equations (SODE)

Stability of critical points in Linear Systems of Ordinary Differential Equations (SODE) Stability of critical points in Linear Systems of Ordinary Differential Equations (SODE) In this chapter Mathematica will be used to study the stability of the critical points of twin equation linear SODE.

More information

PH 120 Project # 2: Pendulum and chaos

PH 120 Project # 2: Pendulum and chaos PH 120 Project # 2: Pendulum and chaos Due: Friday, January 16, 2004 In PH109, you studied a simple pendulum, which is an effectively massless rod of length l that is fixed at one end with a small mass

More information

Introduction to Mathematica

Introduction to Mathematica Introduction to Mathematica Seth F. Oppenheimer The purpose of this handout is to familiarize you with Mathematica. The Mathematics and Statistics Department computer lab is on the fourth floor of Allen

More information

A Poor Example of a Project - But Gives Some Direction

A Poor Example of a Project - But Gives Some Direction A Poor Example of a Project - But Gives Some Direction Bill Knowlton Materials Science & Engineering Electrical & Computer Engineering Boise State Unversity The idea behind this example is two-fold: 1.

More information

An introduction to plotting data

An introduction to plotting data An introduction to plotting data Eric D. Black California Institute of Technology v2.0 1 Introduction Plotting data is one of the essential skills every scientist must have. We use it on a near-daily basis

More information

The connected locus for complex cubic iteration

The connected locus for complex cubic iteration The connected locus for complex cubic iteration A preprint version of a Mathematical graphics column from Mathematica in Education and Research. Mark McClure Department of Mathematics University of North

More information

Concepts of Approximate Error: Approximate Error, Absolute Approximate Error, Relative Approximate Error, and Absolute Relative Approximate Error

Concepts of Approximate Error: Approximate Error, Absolute Approximate Error, Relative Approximate Error, and Absolute Relative Approximate Error Concepts of Approximate Error: Approximate Error, Absolute Approximate Error, Relative Approximate Error, and Absolute Relative Approximate Error Sean Rodby, Luke Snyder, Autar Kaw University of South

More information

Introductions to InverseErfc

Introductions to InverseErfc Introductions to InverseErfc Introduction to the probability integrals and inverses General The probability integral (error function) erf has a long history beginning with the articles of A. de Moivre

More information

ME201/MTH281ME400/CHE400 Convergence of Bessel Expansions

ME201/MTH281ME400/CHE400 Convergence of Bessel Expansions ME201/MTH281ME400/CHE400 Convergence of Bessel Expansions 1. Introduction This notebook provides a general framework for the construction and visualization of partial sums of Fourier-Bessel series. The

More information

Parametric Curves You Should Know

Parametric Curves You Should Know Parametric Curves You Should Know Straight Lines Let a and c be constants which are not both zero. Then the parametric equations determining the straight line passing through (b d) with slope c/a (i.e.

More information

MSE 310/ECE 340. Instructor: Bill Knowlton. Initialize data Clear somedata, someplot. Place data in list somedata

MSE 310/ECE 340. Instructor: Bill Knowlton. Initialize data Clear somedata, someplot. Place data in list somedata MSE 3/ECE 340 Instructor: Bill Knowlton Examples of Plotting Functions ü Example 1: Using the command ListPlot[ ] to plot data in a scatter plot In[1]:= Initialize data Clear somedata someplot Place data

More information

In[0]:= Dateist@D Out[0]= 82009, 0, 9, 2, 35, 3.457034< ü Bo 0 < < -> 2 Consider the case when we have a particle in the ground state of PIB of length. In[3]:= Y@_, _D := Definitions: 2 SinB p F In[4]:=

More information

Students should read Sections of Rogawski's Calculus [1] for a detailed discussion of the material presented in this section.

Students should read Sections of Rogawski's Calculus [1] for a detailed discussion of the material presented in this section. Chapter 3 Differentiation ü 3.1 The Derivative Students should read Sections 3.1-3.5 of Rogawski's Calculus [1] for a detailed discussion of the material presented in this section. ü 3.1.1 Slope of Tangent

More information

Experiment 0 ~ Introduction to Statistics and Excel Tutorial. Introduction to Statistics, Error and Measurement

Experiment 0 ~ Introduction to Statistics and Excel Tutorial. Introduction to Statistics, Error and Measurement Experiment 0 ~ Introduction to Statistics and Excel Tutorial Many of you already went through the introduction to laboratory practice and excel tutorial in Physics 1011. For that reason, we aren t going

More information

5-Sep-15 PHYS101-2 GRAPHING

5-Sep-15 PHYS101-2 GRAPHING GRAPHING Objectives 1- To plot and analyze a graph manually and using Microsoft Excel. 2- To find constants from a nonlinear relation. Exercise 1 - Using Excel to plot a graph Suppose you have measured

More information

Physics 212E Spring 2004 Classical and Modern Physics. Computer Exercise #2

Physics 212E Spring 2004 Classical and Modern Physics. Computer Exercise #2 Physics 212E Spring 2004 Classical and Modern Physics Chowdary Computer Exercise #2 Launch Mathematica by clicking on the Start menu (lower left hand corner of the screen); from there go up to Science

More information

For continuous models, the so-called linear superposition operator for an image transformation can be expressed as:

For continuous models, the so-called linear superposition operator for an image transformation can be expressed as: Computational Vision U. Minn. Psy 5036 Linear systems, Convolutions and Optical blur ü Linear Systems Linear system models are important to vision for modeling: optical, retinal sampling, and neural transformations

More information

The Development of a Quality Control and Analysis Application for the ThermoFluor High Throughput Screening Assay

The Development of a Quality Control and Analysis Application for the ThermoFluor High Throughput Screening Assay The Development of a Quality Control and Analysis Application for the ThermoFluor High Throughput Screening Assay Robert B. Nachbar 1 Delphine Collin 2 Jonathan Robinson 1 Thomas J. Mildorf 3 Eugen Buehler

More information

Exercises for Windows

Exercises for Windows Exercises for Windows CAChe User Interface for Windows Select tool Application window Document window (workspace) Style bar Tool palette Select entire molecule Select Similar Group Select Atom tool Rotate

More information

Polar Coordinates: Graphs

Polar Coordinates: Graphs Polar Coordinates: Graphs By: OpenStaxCollege The planets move through space in elliptical, periodic orbits about the sun, as shown in [link]. They are in constant motion, so fixing an exact position of

More information

Lab 1 Uniform Motion - Graphing and Analyzing Motion

Lab 1 Uniform Motion - Graphing and Analyzing Motion Lab 1 Uniform Motion - Graphing and Analyzing Motion Objectives: < To observe the distance-time relation for motion at constant velocity. < To make a straight line fit to the distance-time data. < To interpret

More information

APPM 1360 Final Exam Fall 2013

APPM 1360 Final Exam Fall 2013 APPM 6 Final Exam Fall On the front of our bluebook, please write: a grading ke, our name, student ID, and section and instructor. This exam is worth 5 points and has 9 questions. Show all work! Answers

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

The wave equation. The basic equation and it's fundamental solutions on bounded domains. u t t = c 2 u x x. An amalgam of sections 1.5 and 2.2.

The wave equation. The basic equation and it's fundamental solutions on bounded domains. u t t = c 2 u x x. An amalgam of sections 1.5 and 2.2. The wave equation An amalgam of sections.5 and.. The basic equation and it's fundamental solutions on bounded domains Suppose that uhx, tl describes the displacement from equlibrium of a vibrating string

More information

Mathematica Project 3

Mathematica Project 3 Mathematica Project 3 Name: Section: Date: On your class s Sakai site, your instructor has placed 5 Mathematica notebooks. Please use the following table to determine which file you should select based

More information

HW #6. 1. Inflaton. (a) slow-roll regime. HW6.nb 1

HW #6. 1. Inflaton. (a) slow-roll regime. HW6.nb 1 HW6.nb HW #6. Inflaton (a) slow-roll regime In the slow-roll regime, we neglect the kinetic energy as well as f ÿÿ term in the equation of motion. Then H = ÅÅÅ 8 p 3 G N ÅÅÅ m f, 3 H f ÿ + m f = 0. We

More information

ES205 Analysis and Design of Engineering Systems: Lab 1: An Introductory Tutorial: Getting Started with SIMULINK

ES205 Analysis and Design of Engineering Systems: Lab 1: An Introductory Tutorial: Getting Started with SIMULINK ES205 Analysis and Design of Engineering Systems: Lab 1: An Introductory Tutorial: Getting Started with SIMULINK What is SIMULINK? SIMULINK is a software package for modeling, simulating, and analyzing

More information

EXCELLING WITH BIOLOGICAL MODELS FROM THE CLASSROOM T0 RESEARCH

EXCELLING WITH BIOLOGICAL MODELS FROM THE CLASSROOM T0 RESEARCH EXCELLING WITH BIOLOGICAL MODELS FROM THE CLASSROOM T0 RESEARCH Timothy D. Comar Benedictine University Department of Mathematics 5700 College Road Lisle, IL 60532 tcomar@ben.edu Introduction Computer

More information

A Review of Trigonometry

A Review of Trigonometry A Review of Trigonometr 0 Kenneth Levasseur Mathematical Sciences UMass Lowell Kenneth_Levasseur@uml.edu Introduction Trigonometr is often introduced as a sstem of ratios of sides of right triangles. Although

More information

LABORATORY 1: KINEMATICS written by Melissa J. Wafer '95 June 1993

LABORATORY 1: KINEMATICS written by Melissa J. Wafer '95 June 1993 LABORATORY 1: KINEMATICS written by Melissa J. Wafer '95 June 1993 The purpose of this exercise is to re-enforce what you have learned about kinematics in class and to familiarize you with computer resources

More information

CCNY 203 Fall 2011 Final Solutions

CCNY 203 Fall 2011 Final Solutions CCNY Fall Final Solutions a: Take cross products of the displacement vectors to get a normal to plane P: Cross@8,, < - 8,, -

More information

Measurement: The Basics

Measurement: The Basics I. Introduction Measurement: The Basics Physics is first and foremost an experimental science, meaning that its accumulated body of knowledge is due to the meticulous experiments performed by teams of

More information

Newton's method for complex polynomials

Newton's method for complex polynomials Newton's method for complex polynomials A preprint version of a Mathematical graphics column from Mathematica in Education and Research. Mark McClure mcmcclure@unca.edu Department of Mathematics University

More information

Appendix A: Math Review

Appendix A: Math Review Appendix A: Math Review A great deal of information can be obtained by first considering the type of equation being investigated. Is one variable squared? If yes it is a quadratic equation. Are there trigonometric

More information

Two parallel line charges with ± Charge.

Two parallel line charges with ± Charge. Two parallel line charges with ± Charge. PROBLEM: Consider two infinitely long line charges parallel to each other and the z axis, passing through the x-y plane at Points { a,0,0} and {+a,0,0} (e.g., separated

More information

Chapter 8: Polar Coordinates and Vectors

Chapter 8: Polar Coordinates and Vectors Chapter 8: Polar Coordinates and Vectors 8.1 Polar Coordinates This is another way (in addition to the x-y system) of specifying the position of a point in the plane. We give the distance r of the point

More information

11.10a Taylor and Maclaurin Series

11.10a Taylor and Maclaurin Series 11.10a 1 11.10a Taylor and Maclaurin Series Let y = f(x) be a differentiable function at x = a. In first semester calculus we saw that (1) f(x) f(a)+f (a)(x a), for all x near a The right-hand side of

More information

Class 4: More Pendulum results

Class 4: More Pendulum results Class 4: More Pendulum results The pendulum is a mechanical problem with a long and interesting history, from Galileo s first ansatz that the period was independent of the amplitude based on watching priests

More information

Astron 104 Laboratory #4 Orbital Motion of a Planet

Astron 104 Laboratory #4 Orbital Motion of a Planet Name: Date: Section: Astron 104 Laboratory #4 Orbital Motion of a Planet Introduction The nature of the Solar System was first derived from careful measurements of the positions of the planets in the night

More information

Non-Linear Problems. Almost Linear Systems Consider the system of equations: (1) Y ' = AY + ghyl

Non-Linear Problems. Almost Linear Systems Consider the system of equations: (1) Y ' = AY + ghyl Non-Linear Problems Almost Linear Systems Consider the system of equations: (1) Y ' = AY + ghyl (here Y is a matrix). Suppose that the origin is an isolated equilibrium point (that is, there is some circle

More information

Learning Scientific Notebook

Learning Scientific Notebook Learning Scientific Notebook Reading and Writing in Scientific Notebook Viewing On-Screen: Zoom Factor, Invisibles Math and Text Producing the Math Symbols from Toolbars and from the Keyboard Using the

More information

Solve::ifun: Inverse functions are being used by Solve, so some solutions may not be found; use Reduce for complete solution information.

Solve::ifun: Inverse functions are being used by Solve, so some solutions may not be found; use Reduce for complete solution information. 1. A country had millions of inhabitants, and ten years later, it has grown to 33 millions of inhabitants. Assuming a continuous logistic growth, calculate the value of r for a carrying capacity K of 100

More information

JPEG BMP. jpeg1.nb 1 JPEG. [Reference] /10/ /10/21 Takuichi Hirano (Tokyo Institute of Technology)

JPEG BMP. jpeg1.nb 1 JPEG. [Reference] /10/ /10/21 Takuichi Hirano (Tokyo Institute of Technology) peg1.nb 1 JPEG JPEG [Reference] http://en.wikipedia.org/wiki/jpeg 2006/10/21 2006/10/21 Takuichi Hirano (Tokyo Institute of Technology) BMP In[1]:= Out[1]= SetDirectory@"d:êhira2êpublic_htmlêhobbyêeduêpeg"D

More information

Getting to the Roots of Quadratics

Getting to the Roots of Quadratics NAME BACKGROUND Graphically: The real roots of a function are the x-coordinates of the points at which the graph of the function intercepts/crosses the x-axis. For a quadratic function, whose graph is

More information

Lab 1: Dynamic Simulation Using Simulink and Matlab

Lab 1: Dynamic Simulation Using Simulink and Matlab Lab 1: Dynamic Simulation Using Simulink and Matlab Objectives In this lab you will learn how to use a program called Simulink to simulate dynamic systems. Simulink runs under Matlab and uses block diagrams

More information

Introduction. Pre-Lab Questions: Physics 1CL PERIODIC MOTION - PART II Fall 2009

Introduction. Pre-Lab Questions: Physics 1CL PERIODIC MOTION - PART II Fall 2009 Introduction This is the second of two labs on simple harmonic motion (SHM). In the first lab you studied elastic forces and elastic energy, and you measured the net force on a pendulum bob held at an

More information

MATH 18.01, FALL PROBLEM SET # 8

MATH 18.01, FALL PROBLEM SET # 8 MATH 18.01, FALL 01 - PROBLEM SET # 8 Professor: Jared Speck Due: by 1:45pm on Tuesday 11-7-1 (in the boxes outside of Room -55 during the day; stick it under the door if the room is locked; write your

More information

C10.4 Notes and Formulas. (a) (b) (c) Figure 2 (a) A graph is symmetric with respect to the line θ =

C10.4 Notes and Formulas. (a) (b) (c) Figure 2 (a) A graph is symmetric with respect to the line θ = C10.4 Notes and Formulas symmetry tests A polar equation describes a curve on the polar grid. The graph of a polar equation can be evaluated for three types of symmetry, as shown in Figure. Figure A graph

More information

Physics 202 Laboratory 3. Root-Finding 1. Laboratory 3. Physics 202 Laboratory

Physics 202 Laboratory 3. Root-Finding 1. Laboratory 3. Physics 202 Laboratory Physics 202 Laboratory 3 Root-Finding 1 Laboratory 3 Physics 202 Laboratory The fundamental question answered by this week s lab work will be: Given a function F (x), find some/all of the values {x i }

More information

DATA LAB. Data Lab Page 1

DATA LAB. Data Lab Page 1 NOTE: This DataLab Activity Guide will be updated soon to reflect April 2015 changes DATA LAB PURPOSE. In this lab, students analyze and interpret quantitative features of their brightness graph to determine

More information

Laplace Transform. Get::noopen : Cannot open Calculus`LaplaceTransform`. à

Laplace Transform. Get::noopen : Cannot open Calculus`LaplaceTransform`. à Laplace Transforms Laplace Transform The definition of the Laplace transform is X@sD = Ÿ 0- x HtL e st t The use of 0 - for the left most limit maybe different from other books.some use 0 and some just

More information

Physics E-1ax, Fall 2014 Experiment 3. Experiment 3: Force. 2. Find your center of mass by balancing yourself on two force plates.

Physics E-1ax, Fall 2014 Experiment 3. Experiment 3: Force. 2. Find your center of mass by balancing yourself on two force plates. Learning Goals Experiment 3: Force After you finish this lab, you will be able to: 1. Use Logger Pro to analyze video and calculate position, velocity, and acceleration. 2. Find your center of mass by

More information

A shape which can be divided by a straight line, so that each part is the mirror image of the other has reflective symmetry.

A shape which can be divided by a straight line, so that each part is the mirror image of the other has reflective symmetry. SYMMETRY There are two kinds of symmetry: a) reflective symmetry b) rotational symmetry a) Reflective Symmetry A shape which can be divided by a straight line, so that each part is the image of the other

More information

Unit: Planetary Science

Unit: Planetary Science Orbital Motion Kepler s Laws GETTING AN ACCOUNT: 1) go to www.explorelearning.com 2) click on Enroll in a class (top right hand area of screen). 3) Where it says Enter class Code enter the number: MLTWD2YAZH

More information

Galactic Rotation Activity*

Galactic Rotation Activity* Galactic Rotation Activity* Neutral hydrogen atoms (H I) consist of a single proton and a single electron. The electron and proton can spin in the same direction (parallel) or in the opposite direction

More information

Physics with Matlab and Mathematica Exercise #1 28 Aug 2012

Physics with Matlab and Mathematica Exercise #1 28 Aug 2012 Physics with Matlab and Mathematica Exercise #1 28 Aug 2012 You can work this exercise in either matlab or mathematica. Your choice. A simple harmonic oscillator is constructed from a mass m and a spring

More information

Solutions to Tutorial for Week 3

Solutions to Tutorial for Week 3 The University of Sydney School of Mathematics and Statistics Solutions to Tutorial for Week 3 MATH9/93: Calculus of One Variable (Advanced) Semester, 08 Web Page: sydney.edu.au/science/maths/u/ug/jm/math9/

More information

correlated to the Indiana Academic Standards for Precalculus CC2

correlated to the Indiana Academic Standards for Precalculus CC2 correlated to the Indiana Academic Standards for Precalculus CC2 6/2003 2003 Introduction to Advanced Mathematics 2003 by Richard G. Brown Advanced Mathematics offers comprehensive coverage of precalculus

More information

Introduction to Computer Tools and Uncertainties

Introduction to Computer Tools and Uncertainties Experiment 1 Introduction to Computer Tools and Uncertainties 1.1 Objectives To become familiar with the computer programs and utilities that will be used throughout the semester. To become familiar with

More information

Notes about changes to Approved Syllabus # 43080v2

Notes about changes to Approved Syllabus # 43080v2 Notes about changes to Approved Syllabus # 43080v2 1. An update to the syllabus was necessary because of a county wide adoption of new textbooks for AP Calculus. 2. No changes were made to the Course Outline

More information

Purpose: Materials: WARNING! Section: Partner 2: Partner 1:

Purpose: Materials: WARNING! Section: Partner 2: Partner 1: Partner 1: Partner 2: Section: PLEASE NOTE: You will need this particular lab report later in the semester again for the homework of the Rolling Motion Experiment. When you get back this graded report,

More information

3D Molecule Viewer of MOGADOC (JavaScript)

3D Molecule Viewer of MOGADOC (JavaScript) 3D Molecule Viewer of MOGADOC (JavaScript) Movement of the Molecule Rotation of the molecule: Use left mouse button to drag. Translation of the molecule: Use right mouse button to drag. Resize the molecule:

More information

Introduction to Special Relativity

Introduction to Special Relativity 1 Introduction to Special Relativity PHYS 1301 F99 Prof. T.E. Coan version: 20 Oct 98 Introduction This lab introduces you to special relativity and, hopefully, gives you some intuitive understanding of

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

Unit 10 Parametric and Polar Equations - Classwork

Unit 10 Parametric and Polar Equations - Classwork Unit 10 Parametric and Polar Equations - Classwork Until now, we have been representing graphs by single equations involving variables x and y. We will now study problems with which 3 variables are used

More information

Week 8 Cookbook: Review and Reflection

Week 8 Cookbook: Review and Reflection : Review and Reflection Week 8 Overview 8.1) Review and Reflection 8.2) Making Intelligent Maps: The map sheet as a blank canvas 8.3) Making Intelligent Maps: Base layers and analysis layers 8.4) ArcGIS

More information

orbits Moon, Planets Spacecrafts Calculating the and by Dr. Shiu-Sing TONG

orbits Moon, Planets Spacecrafts Calculating the and by Dr. Shiu-Sing TONG A Science Enrichment Programme for Secondary 3-4 Students : Teaching and Learning Resources the and Spacecrafts orbits Moon, Planets Calculating the 171 of by Dr. Shiu-Sing TONG 172 Calculating the orbits

More information

Lecture for Week 2 (Secs. 1.3 and ) Functions and Limits

Lecture for Week 2 (Secs. 1.3 and ) Functions and Limits Lecture for Week 2 (Secs. 1.3 and 2.2 2.3) Functions and Limits 1 First let s review what a function is. (See Sec. 1 of Review and Preview.) The best way to think of a function is as an imaginary machine,

More information

Name Class Date. Chapter 23 Touring Our Solar System Investigation 23

Name Class Date. Chapter 23 Touring Our Solar System Investigation 23 Chapter 23 Touring Our Solar System Investigation 23 Exploring Orbits Introduction In 1609, the German mathematician and astronomer Johannes Kepler deciphered a major puzzle of the solar system. The strange

More information

How to Make or Plot a Graph or Chart in Excel

How to Make or Plot a Graph or Chart in Excel This is a complete video tutorial on How to Make or Plot a Graph or Chart in Excel. To make complex chart like Gantt Chart, you have know the basic principles of making a chart. Though I have used Excel

More information

FIT100 Spring 01. Project 2. Astrological Toys

FIT100 Spring 01. Project 2. Astrological Toys FIT100 Spring 01 Project 2 Astrological Toys In this project you will write a series of Windows applications that look up and display astrological signs and dates. The applications that will make up the

More information

ScienceWord and PagePlayer Graphical representation. Dr Emile C. B. COMLAN Novoasoft Representative in Africa

ScienceWord and PagePlayer Graphical representation. Dr Emile C. B. COMLAN Novoasoft Representative in Africa ScienceWord and PagePlayer Graphical representation Dr Emile C. B. COMLAN Novoasoft Representative in Africa Emails: ecomlan@scienceoffice.com ecomlan@yahoo.com Web site: www.scienceoffice.com Graphical

More information

Orbital Mechanics Laboratory

Orbital Mechanics Laboratory Team: Orbital Mechanics Laboratory Studying the forces of nature the interactions between matter is the primary quest of physics. In this celestial experiment, you will measure the force responsible for

More information

Introduction to Hartree-Fock calculations in Spartan

Introduction to Hartree-Fock calculations in Spartan EE5 in 2008 Hannes Jónsson Introduction to Hartree-Fock calculations in Spartan In this exercise, you will get to use state of the art software for carrying out calculations of wavefunctions for molecues,

More information

Space Group & Structure Solution

Space Group & Structure Solution Space Group & Structure Solution Determine the Space Group Space group determination can always be performed by hand by examining the intensity data. A program that can facilitate this step is the command-prompt

More information

NCSS Statistical Software. Harmonic Regression. This section provides the technical details of the model that is fit by this procedure.

NCSS Statistical Software. Harmonic Regression. This section provides the technical details of the model that is fit by this procedure. Chapter 460 Introduction This program calculates the harmonic regression of a time series. That is, it fits designated harmonics (sinusoidal terms of different wavelengths) using our nonlinear regression

More information

ME201/MTH281/ME400/CHE400 Newton's Law of Cooling

ME201/MTH281/ME400/CHE400 Newton's Law of Cooling ME1/MTH281/ME0/CHE0 Newton's Law of Cooling 1. Introduction This notebook uses Mathematica to solve the problem presented in class, in section 5.1 of the notes. The problem is one of transient heat conduction

More information

AST101: Our Corner of the Universe Lab 4: Planetary Orbits

AST101: Our Corner of the Universe Lab 4: Planetary Orbits AST101: Our Corner of the Universe Lab 4: Planetary Orbits Name: Partners: Student number (SUID): Lab section number: 1 Introduction Objectives The Planetary Orbits Lab reviews used the Planetary Orbit

More information

Objectives: (a) To understand how to display a spectral image both as an image and graphically.

Objectives: (a) To understand how to display a spectral image both as an image and graphically. Texas Tech University Department of Physics & Astronomy Astronomy 2401 Observational Astronomy Lab 8:- CCD Image Analysis:- Spectroscopy Objectives: There are two principle objectives for this laboratory

More information

Solution Set Five. 2 Problem #2: The Pendulum of Doom Equation of Motion Simple Pendulum Limit Visualization...

Solution Set Five. 2 Problem #2: The Pendulum of Doom Equation of Motion Simple Pendulum Limit Visualization... : Solution Set Five Northwestern University, Classical Mechanics Classical Mechanics, Third Ed.- Goldstein November 4, 2015 Contents 1 Problem #1: Coupled Mass Oscillator System. 2 1.1 Normal Modes.......................................

More information

Ordinary Differential Equations

Ordinary Differential Equations Instructor: José Antonio Agapito Ruiz UCSC Summer Session II, 00 Math Ordinar Differential Equations Final Solution This report does not contain full answers to all questions of the final. Instead, ou

More information

Computer simulation of radioactive decay

Computer simulation of radioactive decay Computer simulation of radioactive decay y now you should have worked your way through the introduction to Maple, as well as the introduction to data analysis using Excel Now we will explore radioactive

More information

LAB 2 - ONE DIMENSIONAL MOTION

LAB 2 - ONE DIMENSIONAL MOTION Name Date Partners L02-1 LAB 2 - ONE DIMENSIONAL MOTION OBJECTIVES Slow and steady wins the race. Aesop s fable: The Hare and the Tortoise To learn how to use a motion detector and gain more familiarity

More information

Measuring the time constant for an RC-Circuit

Measuring the time constant for an RC-Circuit Physics 8.02T 1 Fall 2001 Measuring the time constant for an RC-Circuit Introduction: Capacitors Capacitors are circuit elements that store electric charge Q according to Q = CV where V is the voltage

More information

You w i ll f ol l ow these st eps : Before opening files, the S c e n e panel is active.

You w i ll f ol l ow these st eps : Before opening files, the S c e n e panel is active. You w i ll f ol l ow these st eps : A. O pen a n i m a g e s t a c k. B. Tr a c e t h e d e n d r i t e w i t h t h e user-guided m ode. C. D e t e c t t h e s p i n e s a u t o m a t i c a l l y. D. C

More information

Electric Fields and Potential

Electric Fields and Potential General Physics Lab 2 Siena College Object Electric Fields and Potential This experiment further explores the electrostatic interaction between charged objects. The concepts of electric field and potential

More information