2.004 Dynamics and Control II Spring 2008

Size: px
Start display at page:

Download "2.004 Dynamics and Control II Spring 2008"

Transcription

1 MIT OpenCourseWare Dynamics and Control II Spring 2008 For information about citing these materials or our Terms of Use, visit:

2 Massachusetts Institute of Technology Department of Mechanical Engineering 2004 Dynamics and Control II Spring Term 2008 ecture 11 1 Classroom Example: Symbolic Transfer Function Generation Using MATAB and Maple Consider the mechanical system shown below: The task is to find the transfer function relating the velocity of mass m 1 to the input force F (s) using the symbolic math package Maple The system linear graph is shown below: = >? We start with the node equation method: (a) Write the continuity equations at the nodes (a), (b), and (c): F F B1 F B2 F B3 F m3 = 0 F B2 F K F m2 = 0 F B1 + F K F m1 = 0 1 copyright c DRowell

3 (b) Substitute for the elemental forces using elemental impedance relationships (in this case it is more convenient to use admittances Y = 1/Z) and velocities at the nodes F Y B1 (v a v c ) Y B2 (v a v b ) Y B3 v a Y m3 v a = 0 Y B2 (v a v b ) Y K (v b v c ) Y m2 v b = 0 Y B1 (v a v c ) + Y K (v b v c ) Y m2 v c = 0 where Y m1 = m 1 s, Y m2 = m 2 s, Y m3 = m 3 s, Y B1 = B 1, Y B2 = B 2, Y B3 = B 3, and Y K = K/s (c) These three linear algebraic equations are used to solve for v a = v m1, which defines the transfer function While the solution is easy in principle, the algebraic manipulations become messy and so we look at the use of symbolic math software contained in MATAB and Maple to assist in the solution: Using MATAB s Symbolic Toolbox, Using Maple directly, and Using the software package Maple Syrep Using MATAB s Symbolic Toolbox to Find the Transfer Function: The Symbolic Toolbox is an optional add-on to MATAB It is a sub-set of Maple, and allows the symbolic solution of linear algebraic equations, such as required in this example The following is a m file, ecture11examplem that illustrates how MATAB can be used: % 2004 Spring 2008 % Classroom Example: Symbolic Transfer Function Generation % Using MATAB s Symbolic Toolbox % % % Declare all of the symbolic variables as syms The specifier real % at the end says that we expect all of these variables to be real syms s F va vb vc YB1 YB2 YB3 Ym1 Ym2 Ym3 YK B1 B2 B3 m1 m2 m3 K real % Solve for the three nodal velocities using the nodal equations [va, vb, vc] = solve( F-YB1(va -vc) - YB2(va -vb) - YB3va - Ym3va = 0, YB2(va-vb) - YK(vb -vc) - Ym2vb = 0, YB1(va-vc) + YK(vb-vc) - Ym1vc = 0 ); % The output variable of interest is vc Substitute for the impedance of % all of the elements (Note - we could have made the substitutions directly % into the equations above and saved these steps): vc=subs(vc,yb1,b1); vc=subs(vc,yb2,b2); vc=subs(vc,yb3,b3); 11 2

4 vc=subs(vc,ym1,m1s); vc=subs(vc,ym2,m2s); vc=subs(vc,ym3,m3s); vc=subs(vc,yk,k/s); % THe transfer function is vc/f H=vc/F; % The rest is "fluff" Use "simplify(h)" to make H a rational fraction, % use "collect(h,s)" to collect all of the coefficients for each power of s, % use "sort(h)" to order the terms in descending powers of s H = sort(collect(simplify(h),s)) The following is a MATAB command line fragment showing the output from the m file, and how numerical values are substituted into the result: ecture11example H = (s^2b1m2+sb1b2+b1k+b2k)/(s^4m1m3m2 +(B3m1m2+m1B1m2+m1B2m3+m1B2m2+B1m3m2)s^3 +(B3m1B2+B3B1m2+m1B1B2+m1m3K+B1B2m3+B1B2m2+m3Km2)s^2 +(B3m1K+B3B1B2+B3Km2+m1B1K+m1B2K+B1m3K+B1Km2+B2m3K+B2Km2)s +B3B1K+B3B2K) m1=3; m2=4; m3=5; B1=1; B2=2; B3=3; K=1000; H=subs(H) H = (4s^2+2s+3000)/(60s^4+122s^ s^ s) Using Maple to Find the Transfer Function: The following page shows a Maple 11 classic work-sheet to solve the algebraic equations This example uses the procedures GenerateMatrix() and inearsolve() from the inearalgebra package Maple uses a : to end a command if no output is to be generated, or a ; if the output is to be displayed The inearalgebra package is loaded using the command with(inearalgebra): Commands are grouped within execution groups indicated at the very left margin A group is executed by placing the cursor within a group and hitting Enter GenerateMatrix() requires that the equations and the output variables entered as lists, that is [item1, item2, ] inearsolve(a,b) solves linear equations in matrix form Ax = b where A, and b have been generated from the equations using GenerateMatrix() 11 3

5 Using Maple Syrep to Find the Transfer Function: Maple Syrep ( for System Representation is a collection of approximately 100 functions for symbolic and numerical analysis of dynamic systems In this handout we examine two of its functions for deriving a system directly from its linear graph or impedance graph We start using the graph for the system, but this time numbering each node: " The system is specified as a Maple list-of-lists, each contained in square brackets, for example for the above diagram: graph:=[[1,2,force,fs], [2,1,mass,m3], [2,1,damper,B3], [2,3,damper,B2], [2,4,damper,B1], [3,1,mass,m2], [4,1,mass,m1,vm1,Fm1], [3,4,spring,K]]: Each entry in the list represents a branch with the first two items the nodes that it connects to (in the direction of the arrow), the third describes the branch, the fourth the parameter, and optionally two items naming the variables on the branch The system is generated using the procedures Graph to system(graph,output) - if the system is represented in linear graph form, or ZGraph to system(graph,output) - if the system is represented in impedance graph form (where the elemental impedances are used) Note: The newer versions of Maple allow a new mode of input, the 2D-Math Input mode that allows formatting as you enter the data With this mode turned on (it is now the default), you can enter subscripts etc Maple Syrep was written before this mode was available, and uses the underscore ( ) in many function names, for example Transfer function() In 2D Math mode, this has to be entered as Transfer\_funtion() where the \ acts as an escape character I prefer to set Maple into the classic 1-D Math Input mode while using Syrep Examples of both modes are shown below 11 4

2.004 Dynamics and Control II Spring 2008

2.004 Dynamics and Control II Spring 2008 MIT OpenCourseWare http://ocwmitedu 00 Dynamics and Control II Spring 00 For information about citing these materials or our Terms of Use, visit: http://ocwmitedu/terms Massachusetts Institute of Technology

More information

2.004 Dynamics and Control II Spring 2008

2.004 Dynamics and Control II Spring 2008 MT OpenCourseWare http://ocwmitedu 200 Dynamics and Control Spring 200 For information about citing these materials or our Terms of Use, visit: http://ocwmitedu/terms Massachusetts nstitute of Technology

More information

A Brief Introduction To. GRTensor. On MAPLE Platform. A write-up for the presentation delivered on the same topic as a part of the course PHYS 601

A Brief Introduction To. GRTensor. On MAPLE Platform. A write-up for the presentation delivered on the same topic as a part of the course PHYS 601 A Brief Introduction To GRTensor On MAPLE Platform A write-up for the presentation delivered on the same topic as a part of the course PHYS 601 March 2012 BY: ARSHDEEP SINGH BHATIA arshdeepsb@gmail.com

More information

BCMB/CHEM 8190 Lab Exercise Using Maple for NMR Data Processing and Pulse Sequence Design March 2012

BCMB/CHEM 8190 Lab Exercise Using Maple for NMR Data Processing and Pulse Sequence Design March 2012 BCMB/CHEM 8190 Lab Exercise Using Maple for NMR Data Processing and Pulse Sequence Design March 2012 Introduction Maple is a powerful collection of routines to aid in the solution of mathematical problems

More information

Without a Vector Calculus Coordinate System

Without a Vector Calculus Coordinate System Classroom Tips and Techniques: Point-and-Click Access to the Differential Operators of Vector Calculus Robert J. Lopez Emeritus Professor of Mathematics and Maple Fellow Maplesoft Introduction The -operator

More information

2.004 Dynamics and Control II Spring 2008

2.004 Dynamics and Control II Spring 2008 MT OpenCourseWare http://ocw.mit.edu.004 Dynamics and Control Spring 008 For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms. Massachusetts nstitute of Technology

More information

Introduction. How to use this book. Linear algebra. Mathematica. Mathematica cells

Introduction. How to use this book. Linear algebra. Mathematica. Mathematica cells Introduction How to use this book This guide is meant as a standard reference to definitions, examples, and Mathematica techniques for linear algebra. Complementary material can be found in the Help sections

More information

Accel Alg E. L. E. Notes Solving Quadratic Equations. Warm-up

Accel Alg E. L. E. Notes Solving Quadratic Equations. Warm-up Accel Alg E. L. E. Notes Solving Quadratic Equations Warm-up Solve for x. Factor. 1. 12x 36 = 0 2. x 2 8x Factor. Factor. 3. 2x 2 + 5x 7 4. x 2 121 Solving Quadratic Equations Methods: (1. By Inspection)

More information

USE OF MATLAB TO UNDERSTAND BASIC MATHEMATICS

USE OF MATLAB TO UNDERSTAND BASIC MATHEMATICS USE OF MATLAB TO UNDERSTAND BASIC MATHEMATICS Sanjay Gupta P. G. Department of Mathematics, Dev Samaj College For Women, Punjab ( India ) ABSTRACT In this paper, we talk about the ways in which computer

More information

Module 2. DC Circuit. Version 2 EE IIT, Kharagpur

Module 2. DC Circuit. Version 2 EE IIT, Kharagpur Module 2 DC Circuit Lesson 5 Node-voltage analysis of resistive circuit in the context of dc voltages and currents Objectives To provide a powerful but simple circuit analysis tool based on Kirchhoff s

More information

Irrational Thoughts. Aim. Equipment. Irrational Investigation: Teacher Notes

Irrational Thoughts. Aim. Equipment. Irrational Investigation: Teacher Notes Teacher Notes 7 8 9 10 11 12 Aim Identify strategies and techniques to express irrational numbers in surd form. Equipment For this activity you will need: TI-Nspire CAS TI-Nspire CAS Investigation Student

More information

The Tangent Parabola The AMATYC Review, Vol. 23, No. 1, Fall 2001, pp

The Tangent Parabola The AMATYC Review, Vol. 23, No. 1, Fall 2001, pp The Tangent Parabola The AMATYC Review, Vol. 3, No., Fall, pp. 5-3. John H. Mathews California State University Fullerton Fullerton, CA 9834 By Russell W. Howell Westmont College Santa Barbara, CA 938

More information

Computational Methods of Scientific Programming. Lecturers Thomas A Herring Chris Hill

Computational Methods of Scientific Programming. Lecturers Thomas A Herring Chris Hill 12.010 Computational Methods of Scientific Programming Lecturers Thomas A Herring Chris Hill Overview Today Solution of ordinary differential equations with Mathematica and Matlab. Examine formulations:

More information

Joy Allen. March 12, 2015

Joy Allen. March 12, 2015 LATEX Newcastle University March 12, 2015 Why use L A TEX? Extremely useful tool for writing scientific papers, presentations and PhD Thesis which are heavily laden with mathematics You get lovely pretty

More information

Solving Systems of Linear Equations with Linear Combinations (The Elimination Method)

Solving Systems of Linear Equations with Linear Combinations (The Elimination Method) Student Handout Name Solving Systems of Linear Equations with Linear Combinations (The Elimination Method) Problem 1 Launch the Activity (Multiplying an Equation by a Constant) When asked to graph the

More information

Math 343 Lab 7: Line and Curve Fitting

Math 343 Lab 7: Line and Curve Fitting Objective Math 343 Lab 7: Line and Curve Fitting In this lab, we explore another use of linear algebra in statistics. Specifically, we discuss the notion of least squares as a way to fit lines and curves

More information

Part II Problems and Solutions

Part II Problems and Solutions Problem 1: [Complex and repeated eigenvalues] (a) The population of long-tailed weasels and meadow voles on Nantucket Island has been studied by biologists They measure the populations relative to a baseline,

More information

Name Date Class HOW TO USE YOUR TI-GRAPHING CALCULATOR. TURNING OFF YOUR CALCULATOR Hit the 2ND button and the ON button

Name Date Class HOW TO USE YOUR TI-GRAPHING CALCULATOR. TURNING OFF YOUR CALCULATOR Hit the 2ND button and the ON button HOW TO USE YOUR TI-GRAPHING CALCULATOR 1. What does the blue 2ND button do? 2. What does the ALPHA button do? TURNING OFF YOUR CALCULATOR Hit the 2ND button and the ON button NEGATIVE NUMBERS Use (-) EX:

More information

Representing Polynomials

Representing Polynomials Lab 4 Representing Polynomials A polynomial of nth degree looks like: a n s n +a n 1 a n 1 +...+a 2 s 2 +a 1 s+a 0 The coefficients a n, a n-1,, a 2, a 1, a 0 are the coefficients of decreasing powers

More information

Classroom Tips and Techniques: Electric Field from Distributed Charge

Classroom Tips and Techniques: Electric Field from Distributed Charge Classroom Tips and Techniques: Electric Field from Distributed Charge Introduction Robert J. Lopez Emeritus Professor of Mathematics and Maple Fellow Maplesoft This past summer I was asked if Maple could

More information

2.004 Dynamics and Control II Spring 2008

2.004 Dynamics and Control II Spring 2008 MIT OpenCourseWare http://ocw.mit.edu 2.004 Dynamics and Control II Spring 2008 For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms. 8 I * * Massachusetts

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

Chapter 1 Linear Equations. 1.1 Systems of Linear Equations

Chapter 1 Linear Equations. 1.1 Systems of Linear Equations Chapter Linear Equations. Systems of Linear Equations A linear equation in the n variables x, x 2,..., x n is one that can be expressed in the form a x + a 2 x 2 + + a n x n = b where a, a 2,..., a n and

More information

2.004 Dynamics and Control II Spring 2008

2.004 Dynamics and Control II Spring 2008 MT OpenCourseWare http://ocw.mit.edu 2.004 Dynamics and Control Spring 2008 or information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms. Reading: ise: Chapter 8 Massachusetts

More information

Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science Algorithms For Inference Fall 2014

Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science Algorithms For Inference Fall 2014 Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science 6.438 Algorithms For Inference Fall 2014 Recitation 3 1 Gaussian Graphical Models: Schur s Complement Consider

More information

EE -213 BASIC CIRCUIT ANALYSIS LAB MANUAL

EE -213 BASIC CIRCUIT ANALYSIS LAB MANUAL EE -213 BASIC CIRCUIT ANALYSIS LAB MANUAL EE 213 Fall 2009 LABORATORY #1 INTRODUCTION TO MATLAB INTRODUCTION The purpose of this laboratory is to introduce you to Matlab and to illustrate some of its circuit

More information

DonnishJournals

DonnishJournals DonnishJournals 2041-1189 Donnish Journal of Educational Research and Reviews. Vol 2(1) pp. 018-024 January, 2015. http:///djerr Copyright 2015 Donnish Journals Original Research Paper Plotting with MAXIMA

More information

1-D Convection-Diffusion Lab

1-D Convection-Diffusion Lab Computational Fluid Dynamics -D Convection-Diffusion Lab The lab. uses scientificworkplace symbolic calculus and maths editor software (SWP) This file Concevtion-Diffusion-Lab is available from Blackboard

More information

Functions. Copyright Cengage Learning. All rights reserved.

Functions. Copyright Cengage Learning. All rights reserved. Functions Copyright Cengage Learning. All rights reserved. 2.1 What is a Function? Copyright Cengage Learning. All rights reserved. Objectives Functions All Around Us Definition of Function Evaluating

More information

SYMBOLIC AND NUMERICAL COMPUTING FOR CHEMICAL KINETIC REACTION SCHEMES

SYMBOLIC AND NUMERICAL COMPUTING FOR CHEMICAL KINETIC REACTION SCHEMES SYMBOLIC AND NUMERICAL COMPUTING FOR CHEMICAL KINETIC REACTION SCHEMES by Mark H. Holmes Yuklun Au J. W. Stayman Department of Mathematical Sciences Rensselaer Polytechnic Institute, Troy, NY, 12180 Abstract

More information

Math Week 1 notes

Math Week 1 notes Math 2270-004 Week notes We will not necessarily finish the material from a given day's notes on that day. Or on an amazing day we may get farther than I've predicted. We may also add or subtract some

More information

MATLAB AND L A TEX EXAMPLES

MATLAB AND L A TEX EXAMPLES MATLAB AND L A TEX EXAMPLES ERNIE AND RYAN UNIVERSITY OF WASHINGTON Abstract. This seems as good a place as any for an abstract. Our goal is to present some examples that may facilitate the use of LATEX

More information

ON SITE SYSTEMS Chemical Safety Assistant

ON SITE SYSTEMS Chemical Safety Assistant ON SITE SYSTEMS Chemical Safety Assistant CS ASSISTANT WEB USERS MANUAL On Site Systems 23 N. Gore Ave. Suite 200 St. Louis, MO 63119 Phone 314-963-9934 Fax 314-963-9281 Table of Contents INTRODUCTION

More information

('')''* = 1- $302. It is common to include parentheses around negative numbers when they appear after an operation symbol.

('')''* = 1- $302. It is common to include parentheses around negative numbers when they appear after an operation symbol. 2.2 ADDING INTEGERS Adding Integers with the Same Sign We often associate the + and - symbols with positive and negative situations. We can find the sum of integers by considering the outcome of these

More information

Algebra I Calculator Activities

Algebra I Calculator Activities First Nine Weeks SOL Objectives Calculating Measures of Central Tendency SOL A.17 Organize a set of data Calculate the mean, median, mode, and range of a set of data Describe the relationships between

More information

Appendix 2: Linear Algebra

Appendix 2: Linear Algebra Appendix 2: Linear Algebra This appendix provides a brief overview of operations using linear algebra, and how they are implemented in Mathcad. This overview should provide readers with the ability to

More information

Matrices A matrix is a rectangular array of numbers. For example, the following rectangular arrays of numbers are matrices: 2 1 2

Matrices A matrix is a rectangular array of numbers. For example, the following rectangular arrays of numbers are matrices: 2 1 2 Matrices A matrix is a rectangular array of numbers For example, the following rectangular arrays of numbers are matrices: 7 A = B = C = 3 6 5 8 0 6 D = [ 3 5 7 9 E = 8 7653 0 Matrices vary in size An

More information

Classroom Tips and Techniques: Eigenvalue Problems for ODEs - Part 1

Classroom Tips and Techniques: Eigenvalue Problems for ODEs - Part 1 Classroom Tips and Techniques: Eigenvalue Problems for DEs - Part 1 Initializations restart with LinearAlgebra : with Student Calculus1 : with RootFinding : Introduction Robert J. Lopez Emeritus Professor

More information

CYBER EXPLORATION LABORATORY EXPERIMENTS

CYBER EXPLORATION LABORATORY EXPERIMENTS CYBER EXPLORATION LABORATORY EXPERIMENTS 1 2 Cyber Exploration oratory Experiments Chapter 2 Experiment 1 Objectives To learn to use MATLAB to: (1) generate polynomial, (2) manipulate polynomials, (3)

More information

Massachusetts Institute of Technology. Problem Set 4 Solutions

Massachusetts Institute of Technology. Problem Set 4 Solutions Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science Department of Mechanical Engineering.050J/2.110J Information and Entropy Spring 2003 Problem Set 4 Solutions

More information

Appendix: A Computer-Generated Portrait Gallery

Appendix: A Computer-Generated Portrait Gallery Appendi: A Computer-Generated Portrait Galler There are a number of public-domain computer programs which produce phase portraits for 2 2 autonomous sstems. One has the option of displaing the trajectories

More information

AMS 27L LAB #6 Winter 2009

AMS 27L LAB #6 Winter 2009 AMS 27L LAB #6 Winter 2009 Symbolically Solving Differential Equations Objectives: 1. To learn about the MATLAB Symbolic Solver 2. To expand knowledge of solutions to Diff-EQs 1 Symbolically Solving Differential

More information

An overview of key ideas

An overview of key ideas An overview of key ideas This is an overview of linear algebra given at the start of a course on the mathematics of engineering. Linear algebra progresses from vectors to matrices to subspaces. Vectors

More information

Tutorial 2. SSMA Cee in Compression: 600S F y = 50ksi Objective. A the end of the tutorial you should be able to

Tutorial 2. SSMA Cee in Compression: 600S F y = 50ksi Objective. A the end of the tutorial you should be able to CUFSM 2.5 Tutorial 2 SSMA Cee in Compression: 600S200-33 F y = 50ksi Objective To model a typical Cee stud in compression and determine the elastic critical local buckling load (P crl )and elastic critical

More information

Computational Study of Chemical Kinetics (GIDES)

Computational Study of Chemical Kinetics (GIDES) Computational Study of Chemical Kinetics (GIDES) Software Introduction Berkeley Madonna (http://www.berkeleymadonna.com) is a dynamic modeling program in which relational diagrams are created using a graphical

More information

2.161 Signal Processing: Continuous and Discrete Fall 2008

2.161 Signal Processing: Continuous and Discrete Fall 2008 MIT OpenCourseWare http://ocw.mit.edu 2.161 Signal rocessing: Continuous and Discrete Fall 2008 For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms. Massachusetts

More information

Student Instruction Sheet: Unit 3, Lesson 3. Solving Quadratic Relations

Student Instruction Sheet: Unit 3, Lesson 3. Solving Quadratic Relations Student Instruction Sheet: Unit 3, Lesson 3 Solving Quadratic Relations Suggested Time: 75 minutes What s important in this lesson: In this lesson, you will learn how to solve a variety of quadratic relations.

More information

6.061 / Introduction to Electric Power Systems

6.061 / Introduction to Electric Power Systems MIT OpenCourseWare http://ocw.mit.edu 6.61 / 6.69 Introduction to Electric Power Systems Spring 27 For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms. Massachusetts

More information

OECD QSAR Toolbox v.4.1. Tutorial illustrating new options for grouping with metabolism

OECD QSAR Toolbox v.4.1. Tutorial illustrating new options for grouping with metabolism OECD QSAR Toolbox v.4.1 Tutorial illustrating new options for grouping with metabolism Outlook Background Objectives Specific Aims The exercise Workflow 2 Background Grouping with metabolism is a procedure

More information

14.6 Spring Force Energy Diagram

14.6 Spring Force Energy Diagram 14.6 Spring Force Energy Diagram The spring force on an object is a restoring force F s = F s î = k î where we choose a coordinate system with the equilibrium position at i = 0 and is the amount the spring

More information

Experiment: Oscillations of a Mass on a Spring

Experiment: Oscillations of a Mass on a Spring Physics NYC F17 Objective: Theory: Experiment: Oscillations of a Mass on a Spring A: to verify Hooke s law for a spring and measure its elasticity constant. B: to check the relationship between the period

More information

2.161 Signal Processing: Continuous and Discrete Fall 2008

2.161 Signal Processing: Continuous and Discrete Fall 2008 MIT OpenCourseWare http://ocw.mit.edu 2.161 Signal Processing: Continuous and Discrete Fall 2008 For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms. I Reading:

More information

ECS 289 / MAE 298, Network Theory Spring 2014 Problem Set # 1, Solutions. Problem 1: Power Law Degree Distributions (Continuum approach)

ECS 289 / MAE 298, Network Theory Spring 2014 Problem Set # 1, Solutions. Problem 1: Power Law Degree Distributions (Continuum approach) ECS 289 / MAE 298, Network Theory Spring 204 Problem Set #, Solutions Problem : Power Law Degree Distributions (Continuum approach) Consider the power law distribution p(k) = Ak γ, with support (i.e.,

More information

Article: Miscellaneous Definitions

Article: Miscellaneous Definitions THE UNIVERSITY OF AKRON The Department of Mathematical Sciences Article: Miscellaneous Definitions This article is the repository of all definitions that don t seem to fit elsewhere Table of Contents Some

More information

Lab 4 Motion in One-Dimension Part 2: Position, Velocity and Acceleration Graphically and Statistically (pre-requisite Lab3)

Lab 4 Motion in One-Dimension Part 2: Position, Velocity and Acceleration Graphically and Statistically (pre-requisite Lab3) Lab 4 Motion in One-Dimension Part 2: Position, Velocity and Acceleration Graphically and Statistically (pre-requisite Lab3) Objectives: To obtain an understanding of position, velocity, and acceleration

More information

Introduction to Finite Element Analysis Using Pro/MECHANICA Wildfire 5.0

Introduction to Finite Element Analysis Using Pro/MECHANICA Wildfire 5.0 Introduction to Finite Element Analysis Using Pro/MECHANICA Wildfire 5.0 Randy H. Shih Oregon Institute of Technology SDC PUBLICATIONS Schroff Development Corporation www.schroff.com Better Textbooks.

More information

Athena Visual Software, Inc. 1

Athena Visual Software, Inc. 1 Athena Visual Studio Visual Kinetics Tutorial VisualKinetics is an integrated tool within the Athena Visual Studio software environment, which allows scientists and engineers to simulate the dynamic behavior

More information

Guidelines for Graphing Calculator Use at the Commencement Level

Guidelines for Graphing Calculator Use at the Commencement Level Guidelines for Graphing Calculator Use at the Commencement Level Introduction Graphing calculators are instrumental in the teaching and learning of mathematics. The use of this technology should be encouraged

More information

ALGEBRA. COPYRIGHT 1996 Mark Twain Media, Inc. ISBN Printing No EB

ALGEBRA. COPYRIGHT 1996 Mark Twain Media, Inc. ISBN Printing No EB ALGEBRA By Don Blattner and Myrl Shireman COPYRIGHT 1996 Mark Twain Media, Inc. ISBN 978-1-58037-826-0 Printing No. 1874-EB Mark Twain Media, Inc., Publishers Distributed by Carson-Dellosa Publishing Company,

More information

System of Equations Review

System of Equations Review Name: Date: 1. Solve the following system of equations for x: x + y = 6 x y = 2 6. Solve the following systems of equations for x: 2x + 3y = 5 4x 3y = 1 2. Solve the following system of equations algebraically

More information

Shipping Grade 6 Solving Equations Clarification

Shipping Grade 6 Solving Equations Clarification Shipping Grade 6 Solving Equations Clarification CCSSM: Grade 6 DOMAIN: Expressions and Equations Cluster: Apply and extend previous understandings of arithmetic to algebraic expressions. Standard: 6.EE.2

More information

Get acquainted with the computer program, The Quadratic Transformer. When you're satisfied that you understand how it works, try the tasks below.

Get acquainted with the computer program, The Quadratic Transformer. When you're satisfied that you understand how it works, try the tasks below. Weaving a Parabola Web with the Quadratic Transformer In this activity, you explore how the graph of a quadratic function and its symbolic expression relate to each other. You start with a set of four

More information

Green s Functions with Reflection

Green s Functions with Reflection Green s Functions with Reflection User s manual Alberto Cabada Fernández (USC) José Ángel Cid Araújo (UVIGO) Fernando Adrián Fernández Tojo (USC) Beatriz Máquez Villamarín (USC) Universidade de Santiago

More information

Topic 3. Matrix Operations Matrix & Linear Algebra Operations Element-by-Element(array) Operations

Topic 3. Matrix Operations Matrix & Linear Algebra Operations Element-by-Element(array) Operations Topic 3 Matrix Operations Matrix & Linear Algebra Operations Element-by-Element(array) Operations 1 Introduction Matlab is designed to carry out advanced array operations that have many applications in

More information

ALGEBRA 2 QUADRATIC FORMULA WORKSHEET ANSWERS

ALGEBRA 2 QUADRATIC FORMULA WORKSHEET ANSWERS 06 May, 2018 ALGEBRA 2 QUADRATIC FORMULA WORKSHEET ANSWERS Document Filetype: PDF 322.71 KB 0 ALGEBRA 2 QUADRATIC FORMULA WORKSHEET ANSWERS Sofsource.com offers invaluable facts on quadratic formula worksheets,

More information

Classroom Tips and Techniques: Series Expansions Robert J. Lopez Emeritus Professor of Mathematics and Maple Fellow Maplesoft

Classroom Tips and Techniques: Series Expansions Robert J. Lopez Emeritus Professor of Mathematics and Maple Fellow Maplesoft Introduction Classroom Tips and Techniques: Series Expansions Robert J. Lopez Emeritus Professor of Mathematics and Maple Fellow Maplesoft Maple has the ability to provide various series expansions and

More information

Relations & Functions

Relations & Functions Mathematics for Computer Science MIT J/18.062J elations & Functions inary relations binary relation associates elements of one set called the domain, with elements of another set called the codomain lec

More information

Created: 2/3/96 Modified: September 29, Author: Theresa Julia Zielinski Page 1

Created: 2/3/96 Modified: September 29, Author: Theresa Julia Zielinski Page 1 Exploring Orthonormal Functions by Theresa Julia Zielinski Department of Chemistry, Medical Technology, and Physics Monmouth University West Long Branch, NJ 7764-898 tzielins@monmouth.edu Copyright 7 by

More information

Transmission Matrix Model of a Quarter-Wave-Tube with Gas Temperature Gradients

Transmission Matrix Model of a Quarter-Wave-Tube with Gas Temperature Gradients Transmission Matrix Model of a Quarter-Wave-Tube with Gas Temperature Gradients Carl Howard School of Mechanical Engineering, University of Adelaide, South Australia, Australia ABSTRACT A transmission

More information

Using SMATH software for the analysis of steady states in electric circuits

Using SMATH software for the analysis of steady states in electric circuits Computer Applications in Electrical Engineering Vol. 14 2016 DOI 10.21008/j.1508-4248.2016.0006 Using SMATH software for the analysis of steady states in electric circuits MirosławWołoszyn, Joanna Wołoszyn

More information

MATLAB Project 2: MATH240, Spring 2013

MATLAB Project 2: MATH240, Spring 2013 1. Method MATLAB Project 2: MATH240, Spring 2013 This page is more information which can be helpful for your MATLAB work, including some new commands. You re responsible for knowing what s been done before.

More information

Relationships Between Quantities

Relationships Between Quantities Algebra 1 Relationships Between Quantities Relationships Between Quantities Everyone loves math until there are letters (known as variables) in problems!! Do students complain about reading when they come

More information

Algebra & Trig. I. For example, the system. x y 2 z. may be represented by the augmented matrix

Algebra & Trig. I. For example, the system. x y 2 z. may be represented by the augmented matrix Algebra & Trig. I 8.1 Matrix Solutions to Linear Systems A matrix is a rectangular array of elements. o An array is a systematic arrangement of numbers or symbols in rows and columns. Matrices (the plural

More information

Due: Monday November 26 th LAB 7: Rivers and Flood Frequency

Due: Monday November 26 th LAB 7: Rivers and Flood Frequency 1 12.001 Due: Monday November 26 th LAB 7: Rivers and Flood Frequency Overview and Objectives This exercise will provide some hands-on experience with methods used for predicting flood frequency and magnitude.

More information

Compensation 8. f4 that separate these regions of stability and instability. The characteristic S 0 L U T I 0 N S

Compensation 8. f4 that separate these regions of stability and instability. The characteristic S 0 L U T I 0 N S S 0 L U T I 0 N S Compensation 8 Note: All references to Figures and Equations whose numbers are not preceded by an "S"refer to the textbook. As suggested in Lecture 8, to perform a Nyquist analysis, we

More information

Google Page Rank Project Linear Algebra Summer 2012

Google Page Rank Project Linear Algebra Summer 2012 Google Page Rank Project Linear Algebra Summer 2012 How does an internet search engine, like Google, work? In this project you will discover how the Page Rank algorithm works to give the most relevant

More information

C A R I B B E A N E X A M I N A T I O N S C O U N C I L REPORT ON CANDIDATES WORK IN THE CARIBBEAN SECONDARY EDUCATION CERTIFICATE EXAMINATION

C A R I B B E A N E X A M I N A T I O N S C O U N C I L REPORT ON CANDIDATES WORK IN THE CARIBBEAN SECONDARY EDUCATION CERTIFICATE EXAMINATION C A R I B B E A N E X A M I N A T I O N S C O U N C I L REPORT ON CANDIDATES WORK IN THE CARIBBEAN SECONDARY EDUCATION CERTIFICATE EXAMINATION MAY/JUNE 2013 MATHEMATICS GENERAL PROFICIENCY EXAMINATION

More information

I. RADIAL PROBABILITY DISTRIBUTIONS (RPD) FOR S-ORBITALS

I. RADIAL PROBABILITY DISTRIBUTIONS (RPD) FOR S-ORBITALS 5. Lecture Summary #7 Readings for today: Section.0 (.9 in rd ed) Electron Spin, Section. (.0 in rd ed) The Electronic Structure of Hydrogen. Read for Lecture #8: Section. (. in rd ed) Orbital Energies

More information

Intermediate Algebra Summary - Part I

Intermediate Algebra Summary - Part I Intermediate Algebra Summary - Part I This is an overview of the key ideas we have discussed during the first part of this course. You may find this summary useful as a study aid, but remember that the

More information

Paper Reference. Paper Reference(s) 6665/01 Edexcel GCE Core Mathematics C3 Advanced Level. Monday 12 June 2006 Afternoon Time: 1 hour 30 minutes

Paper Reference. Paper Reference(s) 6665/01 Edexcel GCE Core Mathematics C3 Advanced Level. Monday 12 June 2006 Afternoon Time: 1 hour 30 minutes Centre No. Candidate No. Paper Reference(s) 6665/01 Edexcel GCE Core Mathematics C3 Advanced Level Monday 12 June 2006 Afternoon Time: 1 hour 30 minutes Materials required for examination Mathematical

More information

Using Tables and Graphing Calculators in Math 11

Using Tables and Graphing Calculators in Math 11 Using Tables and Graphing Calculators in Math 11 Graphing calculators are not required for Math 11, but they are likely to be helpful, primarily because they allow you to avoid the use of tables in some

More information

Essay 4. Numerical Solutions of the Equations of Heat Transfer and Fluid Flow

Essay 4. Numerical Solutions of the Equations of Heat Transfer and Fluid Flow Essay 4 Numerical Solutions of the Equations of Heat Transfer and Fluid Flow 4.1 Introduction In Essay 3, it was shown that heat conduction is governed by a partial differential equation. It will also

More information

ISIS/Draw "Quick Start"

ISIS/Draw Quick Start ISIS/Draw "Quick Start" Click to print, or click Drawing Molecules * Basic Strategy 5.1 * Drawing Structures with Template tools and template pages 5.2 * Drawing bonds and chains 5.3 * Drawing atoms 5.4

More information

2.004 Dynamics and Control II Spring 2008

2.004 Dynamics and Control II Spring 2008 MIT OpenCourseWare http://ocw.mit.edu 2.004 Dynamics and Control II Spring 2008 or information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms. 2 I C + 4 * Massachusetts

More information

Vectors and Vector Arithmetic

Vectors and Vector Arithmetic Vectors and Vector Arithmetic Introduction and Goals: The purpose of this lab is to become familiar with the syntax of Maple commands for manipulating and graphing vectors. It will introduce you to basic

More information

Project 2: Using linear systems for numerical solution of boundary value problems

Project 2: Using linear systems for numerical solution of boundary value problems LINEAR ALGEBRA, MATH 124 Instructor: Dr. T.I. Lakoba Project 2: Using linear systems for numerical solution of boundary value problems Goal Introduce one of the most important applications of Linear Algebra

More information

EE-201 Review Exam I. 1. The voltage Vx in the circuit below is: (1) 3V (2) 2V (3) -2V (4) 1V (5) -1V (6) None of above

EE-201 Review Exam I. 1. The voltage Vx in the circuit below is: (1) 3V (2) 2V (3) -2V (4) 1V (5) -1V (6) None of above EE-201, Review Probs Test 1 page-1 Spring 98 EE-201 Review Exam I Multiple Choice (5 points each, no partial credit.) 1. The voltage Vx in the circuit below is: (1) 3V (2) 2V (3) -2V (4) 1V (5) -1V (6)

More information

Class President: A Network Approach to Popularity. Due July 18, 2014

Class President: A Network Approach to Popularity. Due July 18, 2014 Class President: A Network Approach to Popularity Due July 8, 24 Instructions. Due Fri, July 8 at :59 PM 2. Work in groups of up to 3 3. Type up the report, and submit as a pdf on D2L 4. Attach the code

More information

Moments of Inertia. Maplesoft, a division of Waterloo Maple Inc., 2008

Moments of Inertia. Maplesoft, a division of Waterloo Maple Inc., 2008 Introduction Moments of Inertia Maplesoft, a division of Waterloo Maple Inc., 2008 This application is one of a collection of educational engineering eamples using Maple. These ever stage of the solution,

More information

(Mathematical Operations with Arrays) Applied Linear Algebra in Geoscience Using MATLAB

(Mathematical Operations with Arrays) Applied Linear Algebra in Geoscience Using MATLAB Applied Linear Algebra in Geoscience Using MATLAB (Mathematical Operations with Arrays) Contents Getting Started Matrices Creating Arrays Linear equations Mathematical Operations with Arrays Using Script

More information

Transmission Matrix Model of a Quarter-Wave-Tube with Gas Temperature Gradients

Transmission Matrix Model of a Quarter-Wave-Tube with Gas Temperature Gradients Proceedings of Acoustics 2013 Victor Harbor Transmission Matrix Model of a Quarter-Wave-Tube with Gas Temperature Gradients Carl Howard School of Mechanical Engineering, University of Adelaide, South Australia,

More information

indicates that a student should be able to complete this item without a calculator.

indicates that a student should be able to complete this item without a calculator. HONORS ALGEBRA A Semester Eam Review The semester A eamination for Honors Algebra will consist of two parts. Part 1 will be selected response on which a calculator is NOT allowed. Part will be grid-in

More information

Linear Algebra and TI 89

Linear Algebra and TI 89 Linear Algebra and TI 89 Abdul Hassen and Jay Schiffman This short manual is a quick guide to the use of TI89 for Linear Algebra. We do this in two sections. In the first section, we will go over the editing

More information

The useful linear algebra operations are contained in a special package that is loaded with the command

The useful linear algebra operations are contained in a special package that is loaded with the command Matrices in Maple October 24, 1994 1 Linear Algebra Package The useful linear algebra operations are contained in a special package that is loaded with the command > with(linalg); The list of newly defined

More information

Mathematica 3.0. we will not discuss all the possibilities for every command we illustrate.

Mathematica 3.0. we will not discuss all the possibilities for every command we illustrate. Mathematica 3.0 Mathematica 3.0 allows you to type in several lines of input before executing them. Each line of input is ordinarily followed by Enter, but when you are ready to execute the input lines,

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

Linear Equations and Inequalities

Linear Equations and Inequalities Unit 2 Linear Equations and Inequalities 9/26/2016 10/21/2016 Name: By the end of this unit, you will be able to Use rate of change to solve problems Find the slope of a line Model real-world data with

More information

Ohio s State Tests ITEM RELEASE SPRING 2016 INTEGRATED MATHEMATICS I

Ohio s State Tests ITEM RELEASE SPRING 2016 INTEGRATED MATHEMATICS I Ohio s State Tests ITEM RELEASE SPRING 2016 INTEGRATED MATHEMATICS I Table of Contents Questions 1 3: Content Summary and Answer Key... ii Question 1: Question and Scoring Guidelines... 1 Question 1: Sample

More information

1 Overview of Simulink. 2 State-space equations

1 Overview of Simulink. 2 State-space equations Modelling and simulation of engineering systems Simulink Exercise 1 - translational mechanical systems Dr. M. Turner (mct6@sun.engg.le.ac.uk 1 Overview of Simulink Simulink is a package which runs in the

More information

Chapter 3 Engineering Solutions. 3.4 and 3.5 Problem Presentation

Chapter 3 Engineering Solutions. 3.4 and 3.5 Problem Presentation Chapter 3 Engineering Solutions 3.4 and 3.5 Problem Presentation Organize your work as follows (see book): Problem Statement Theory and Assumptions Solution Verification Tools: Pencil and Paper See Fig.

More information