Heat equation examples

Size: px
Start display at page:

Download "Heat equation examples"

Transcription

1 Heat equation examples The Heat equation is discussed in depth in starting on page 6. You may recall Newton s Law of Cooling from Calculus. Just kidding. In case you don t, here goes: An object changes temperature at a rate proportional to the difference between its temperature and the temperature of the surrounding medium. As an equation: dy kt ( 0 y) dt for an object with temperature y(t) in a medium of constant temperature T 0 and thermal constant k. And in case you don t recall how to solve this, you might want to seek help from a professional (hint: better be a professional math teacher, because ln is involved). This N s LoC treats the object as a point body (aren t all Newtonian objects point bodies?) immersed in a uniform medium (aren t all media uniform?) What s different about the heat equation we write as a PDE? The temperature function u(x, t) (or u(x, y, t) in two spatial dimensions) is the temperature within an object as a function of both position and time. Heat flows within an object in a process known as conduction, in response to an internal temperature gradient, which we represent in one dimension by du/dx and in two dimensions as some combination of du/dx and du/dy: Let q(x, t) be the heat flow function (aka heat flux) within the object: In one u dimension, we have the flux equation qxt (, ) for a constant. x Heat flows down the temperature gradient: When the gradient is +, temperature increases with increasing x position and heat flows to the left (towards decreasing x). When the gradient is negative, temperature decreases with increasing x and heat flows to the right.

2 This gives rise to Fourier s Law of Conduction, which states that the time rate of change in the temperature function u is proportional to the negative gradient of the heat flow, -dq/dx. Putting it all together, we obtain the Heat Equation: uxt (, ) q u k x x or u t = - ku xx. See and subsequent pages (accessed from the intro page with the button). Be sure you look through all 4 parts of the exercise; answer the two questions in the summary. In more general terms, the function u(x,t) is a solution to the heat equation if it satisfies u the PDE k q( x, t). The constant k is the thermal diffusivity and the function x q(x, t) represents any external heat source (positive for heat in) or sink (negative for heat out). The function u(x,t) describes the temperature distribution in the one-dimensional material as functions of position and time. Here is a Mathematica expression for solving the one dimensional heat equation for a rod of length 1 over a time interval of 5 sec. In this expression, the initial condition is the temperature function at t = 0, f[x]. A heat supply/sink function q[x,t] (positive for heat flow in, negative for heat flow out) can be specified outside NDSolve[ ]. The thermal diffusivity constant is arbitrarily set at The ends of the rod are kept at temperature = 0, as specified by the twin BCs u[0,t] == 0 and u[len,t] == 0. Sample output (q[x] = 0): To produce this output, the initial temperature function f[x] was a half cycle of a sinusoid with a peak temperature of 100 o at x = 0.5. Note how the time-decaying exponential takes over and the temperature

3 function flattens out. Note the snazzy color scheme. You can also try a different looking color scheme by specifying We can obtain the exponential decay rate, even though u[x, t] is an output of NDSolve[ ]: FindFit[ ] neatly generates the required exponential decay with time, using the temperatures at x =.5, providing a value for the exponent b. Now suppose there is a nonzero q[x] external source function. Let s put a gentle flame at the middle of the bar: Here is the resulting 3D plot of the solution: Not surprisingly, the heat source in the center kept the central temperature from decreasing as rapidly as above. 3

4 And here our center heat source is turned into a sink, representing heat flow out of the onedimensional system: The temperature now rapidly cools to well below 0! Make sure you see that this is one dimensional (x only) as a function of time! Problems 1. Try a similar heat flow model (cold boundaries, hot middle) for a variety of thermal diffusivities (it was 0.01 in the above).. Investigate different initial temperature distributions with no external heat flow. 3. What happens if there are nonzero q functions? Start with a hot middle and allow positive heat flow. Try one side with positive heat flow, the other side with negative heat flow. Note that we also can produce slices of temperature vs. time: 4

5 Samples shown; the actual result of GraphicsRow would be three temp vs time graphs, side-by-side. Here is a slice at a constant time: temp as a function of x This is a good place for Animate[ ]. See the worked examples 1-5 on pages 9-44 in Dawkins PDE chapter. Heat equation with a varying boundary condition Evaluate and plot the following pair of two heat equations, paying particular attention to the behavior of solutions u(t, x) at x = 0. sol1= NDSolve[{D[u[t,x],t]==D[u[t,x],{x,}], u[0,x]==0, u[t,0]==sin[t], u[t,5]==0}, u[t,x],{t,0,10},{x,0,5}]//flatten sol=ndsolve[{d[u[t,x],t]==d[u[t,x],{x,}], u[0,x]==1, u[t,0]==cos[t], u[t,5]==1}, u[t,x],{t,0,10},{x,0,5}]//flatten 5

6 Diffusion The same PDE is also known as the diffusion relationship, governing the rate of spread of a substance throughout a medium: Mixtures of different chemicals, osmosis, as well as the spread of biological characteristics in otherwise stable populations. u D, where D is the diffusivity constant and u(x,t) is the concentration of the x diffusing substance. Note that if the concentration increases in time ( 0 ), the concentration gradient ( x ) must also be increasing ( u ( ) 0). At steady state x x x u (equilibrium), 0 0 const x x Diffusion is usually a smoother-out-er: if you add salt to water, the salt diffuses throughout the water until equilibrium is reached. Coupled diffusion models or How the leopard got its spots (ok, they re giraffes, not leopards) In a two-chemical system, diffusion can produce feedback, leading to unstable systems (or the evolutionary development of zebra stripes or spots on leopards or patches on giraffes). These are known as stimulator-inhibitor models, which have common characteristics: Suppose chemical U 1 produces melanin in the skin and chemical U inhibits it; excess of stimulator also stimulates production of inhibitor; diffusion rates for the two chemicals differ. Let the concentrations of stimulator and inhibitor be given by u 1 = u 1e + 1, u = u e +, where the subscript e represents equilibrium concentration (when 1 = = 0 and 1 0 ). In a linear model, we could specify that for small deviations from 1 equilibrium, au1 bu, cu1 du (for constants a, b, c, d), but this neglects 6

7 the effect of diffusion. To include differences in diffusion, we have two additional constants and the stimulator-inhibitor diffusion relationship: u u u u x x 1 1 au1 bu D1, cu 1 du D These kinds of equations were first described by Alan Turing (the Alan Turing if you don t know the name, rent a copy of Enigma or go see The Imitation Game) and elaborated by J. Maynard Smith. See An interesting case occurs when all of the following conditions exist: a > 0 and c > 0: As stimulator concentration rises above equilibrium, the rates of production of both stimulator and inhibitor also increase; b < 0: As inhibitor concentration rises, the rate of production of stimulator decreases; and D > D 1 : Inhibitor diffuses faster than stimulator. Given the right parameters, a small change from equilibrium will lead to pronounced peaks and troughs in the concentrations that do not smooth out with time. Hence: spots on a giraffe! But the solutions of these coupled systems have to wait for finite difference techniques.. 7

An Introduction to Partial Differential Equations

An Introduction to Partial Differential Equations An Introduction to Partial Differential Equations Andrew J. Bernoff LECTURE 2 Cooling of a Hot Bar: The Diffusion Equation 2.1. Outline of Lecture An Introduction to Heat Flow Derivation of the Diffusion

More information

Reaction diffusion systems and pattern formation

Reaction diffusion systems and pattern formation Chapter 5 Reaction diffusion systems and pattern formation 5.1 Reaction diffusion systems from biology In ecological problems, different species interact with each other, and in chemical reactions, different

More information

Application of Fourier Transform to PDE (I) Fourier Sine Transform (application to PDEs defined on a semi-infinite domain)

Application of Fourier Transform to PDE (I) Fourier Sine Transform (application to PDEs defined on a semi-infinite domain) Application of Fourier Transform to PDE (I) Fourier Sine Transform (application to PDEs defined on a semi-infinite domain) The Fourier Sine Transform pair are F. T. : U = 2/ u x sin x dx, denoted as U

More information

CONSERVATION LAWS. See Figures 2 and 1.

CONSERVATION LAWS. See Figures 2 and 1. CONSERVATION LAWS 1. Multivariable calculus 1.1. Divergence theorem (of Gauss). This states that the volume integral in of the divergence of the vector-valued function F is equal to the total flux of F

More information

Experiment 12E LIQUID-VAPOR EQUILIBRIUM OF WATER 1

Experiment 12E LIQUID-VAPOR EQUILIBRIUM OF WATER 1 Experiment 12E LIQUID-VAPOR EQUILIBRIUM OF WATER 1 FV 6/26/13 MATERIALS: PURPOSE: 1000 ml tall-form beaker, 10 ml graduated cylinder, -10 to 110 o C thermometer, thermometer clamp, plastic pipet, long

More information

The Heat Equation. Lectures INF2320 p. 1/88

The Heat Equation. Lectures INF2320 p. 1/88 The Heat Equation Lectures INF232 p. 1/88 Lectures INF232 p. 2/88 The Heat Equation We study the heat equation: u t = u xx for x (,1), t >, (1) u(,t) = u(1,t) = for t >, (2) u(x,) = f(x) for x (,1), (3)

More information

Section 1.4. Difference Equations

Section 1.4. Difference Equations Difference Equations to Differential Equations Section 1.4 Difference Equations At this point almost all of our sequences have had explicit formulas for their terms. That is, we have looked mainly at sequences

More information

12.307. 1 Convection in water (an almost-incompressible fluid)

12.307. 1 Convection in water (an almost-incompressible fluid) 12.307 Convection in water (an almost-incompressible fluid) John Marshall, Lodovica Illari and Alan Plumb March, 2004 1 Convection in water (an almost-incompressible fluid) 1.1 Buoyancy Objects that are

More information

Lecture 3 Fluid Dynamics and Balance Equa6ons for Reac6ng Flows

Lecture 3 Fluid Dynamics and Balance Equa6ons for Reac6ng Flows Lecture 3 Fluid Dynamics and Balance Equa6ons for Reac6ng Flows 3.- 1 Basics: equations of continuum mechanics - balance equations for mass and momentum - balance equations for the energy and the chemical

More information

Second Order Linear Partial Differential Equations. Part I

Second Order Linear Partial Differential Equations. Part I Second Order Linear Partial Differential Equations Part I Second linear partial differential equations; Separation of Variables; - point boundary value problems; Eigenvalues and Eigenfunctions Introduction

More information

MATH 425, PRACTICE FINAL EXAM SOLUTIONS.

MATH 425, PRACTICE FINAL EXAM SOLUTIONS. MATH 45, PRACTICE FINAL EXAM SOLUTIONS. Exercise. a Is the operator L defined on smooth functions of x, y by L u := u xx + cosu linear? b Does the answer change if we replace the operator L by the operator

More information

Global Seasonal Phase Lag between Solar Heating and Surface Temperature

Global Seasonal Phase Lag between Solar Heating and Surface Temperature Global Seasonal Phase Lag between Solar Heating and Surface Temperature Summer REU Program Professor Tom Witten By Abstract There is a seasonal phase lag between solar heating from the sun and the surface

More information

Particular Solutions. y = Ae 4x and y = 3 at x = 0 3 = Ae 4 0 3 = A y = 3e 4x

Particular Solutions. y = Ae 4x and y = 3 at x = 0 3 = Ae 4 0 3 = A y = 3e 4x Particular Solutions If the differential equation is actually modeling something (like the cost of milk as a function of time) it is likely that you will know a specific value (like the fact that milk

More information

The one dimensional heat equation: Neumann and Robin boundary conditions

The one dimensional heat equation: Neumann and Robin boundary conditions The one dimensional heat equation: Neumann and Robin boundary conditions Ryan C. Trinity University Partial Differential Equations February 28, 2012 with Neumann boundary conditions Our goal is to solve:

More information

Section 4-7 Exponential and Logarithmic Equations. Solving an Exponential Equation. log 2. 3 2 log 5. log 2 1.4406

Section 4-7 Exponential and Logarithmic Equations. Solving an Exponential Equation. log 2. 3 2 log 5. log 2 1.4406 314 4 INVERSE FUNCTIONS; EXPONENTIAL AND LOGARITHMIC FUNCTIONS Section 4-7 Exponential and Logarithmic Equations Exponential Equations Logarithmic Equations Change of Base Equations involving exponential

More information

1 The 1-D Heat Equation

1 The 1-D Heat Equation The 1-D Heat Equation 18.303 Linear Partial Differential Equations Matthew J. Hancock Fall 006 1 The 1-D Heat Equation 1.1 Physical derivation Reference: Guenther & Lee 1.3-1.4, Myint-U & Debnath.1 and.5

More information

8. Time Series and Prediction

8. Time Series and Prediction 8. Time Series and Prediction Definition: A time series is given by a sequence of the values of a variable observed at sequential points in time. e.g. daily maximum temperature, end of day share prices,

More information

N 1. (q k+1 q k ) 2 + α 3. k=0

N 1. (q k+1 q k ) 2 + α 3. k=0 Teoretisk Fysik Hand-in problem B, SI1142, Spring 2010 In 1955 Fermi, Pasta and Ulam 1 numerically studied a simple model for a one dimensional chain of non-linear oscillators to see how the energy distribution

More information

4.1 INTRODUCTION TO THE FAMILY OF EXPONENTIAL FUNCTIONS

4.1 INTRODUCTION TO THE FAMILY OF EXPONENTIAL FUNCTIONS Functions Modeling Change: A Preparation for Calculus, 4th Edition, 2011, Connally 4.1 INTRODUCTION TO THE FAMILY OF EXPONENTIAL FUNCTIONS Functions Modeling Change: A Preparation for Calculus, 4th Edition,

More information

1 Error in Euler s Method

1 Error in Euler s Method 1 Error in Euler s Method Experience with Euler s 1 method raises some interesting questions about numerical approximations for the solutions of differential equations. 1. What determines the amount of

More information

Numerical Analysis Lecture Notes

Numerical Analysis Lecture Notes Numerical Analysis Lecture Notes Peter J. Olver. Finite Difference Methods for Partial Differential Equations As you are well aware, most differential equations are much too complicated to be solved by

More information

5.4 The Heat Equation and Convection-Diffusion

5.4 The Heat Equation and Convection-Diffusion 5.4. THE HEAT EQUATION AND CONVECTION-DIFFUSION c 6 Gilbert Strang 5.4 The Heat Equation and Convection-Diffusion The wave equation conserves energy. The heat equation u t = u xx dissipates energy. The

More information

Student name: Earlham College. Fall 2011 December 15, 2011

Student name: Earlham College. Fall 2011 December 15, 2011 Student name: Earlham College MATH 320: Differential Equations Final exam - In class part Fall 2011 December 15, 2011 Instructions: This is a regular closed-book test, and is to be taken without the use

More information

Chapter 2: Linear Equations and Inequalities Lecture notes Math 1010

Chapter 2: Linear Equations and Inequalities Lecture notes Math 1010 Section 2.1: Linear Equations Definition of equation An equation is a statement that equates two algebraic expressions. Solving an equation involving a variable means finding all values of the variable

More information

Numerical Methods for Differential Equations

Numerical Methods for Differential Equations Numerical Methods for Differential Equations Course objectives and preliminaries Gustaf Söderlind and Carmen Arévalo Numerical Analysis, Lund University Textbooks: A First Course in the Numerical Analysis

More information

Parabolic Equations. Chapter 5. Contents. 5.1.2 Well-Posed Initial-Boundary Value Problem. 5.1.3 Time Irreversibility of the Heat Equation

Parabolic Equations. Chapter 5. Contents. 5.1.2 Well-Posed Initial-Boundary Value Problem. 5.1.3 Time Irreversibility of the Heat Equation 7 5.1 Definitions Properties Chapter 5 Parabolic Equations Note that we require the solution u(, t bounded in R n for all t. In particular we assume that the boundedness of the smooth function u at infinity

More information

Week 2: Exponential Functions

Week 2: Exponential Functions Week 2: Exponential Functions Goals: Introduce exponential functions Study the compounded interest and introduce the number e Suggested Textbook Readings: Chapter 4: 4.1, and Chapter 5: 5.1. Practice Problems:

More information

Cooling and Euler's Method

Cooling and Euler's Method Lesson 2: Cooling and Euler's Method 2.1 Applied Problem. Heat transfer in a mass is very important for a number of objects such as cooling of electronic parts or the fabrication of large beams. Although

More information

1 Finite difference example: 1D implicit heat equation

1 Finite difference example: 1D implicit heat equation 1 Finite difference example: 1D implicit heat equation 1.1 Boundary conditions Neumann and Dirichlet We solve the transient heat equation ρc p t = ( k ) (1) on the domain L/2 x L/2 subject to the following

More information

Math 120 Final Exam Practice Problems, Form: A

Math 120 Final Exam Practice Problems, Form: A Math 120 Final Exam Practice Problems, Form: A Name: While every attempt was made to be complete in the types of problems given below, we make no guarantees about the completeness of the problems. Specifically,

More information

Chapter 9 Partial Differential Equations

Chapter 9 Partial Differential Equations 363 One must learn by doing the thing; though you think you know it, you have no certainty until you try. Sophocles (495-406)BCE Chapter 9 Partial Differential Equations A linear second order partial differential

More information

Introduction To Materials Science FOR ENGINEERS, Ch. 5. Diffusion. MSE 201 Callister Chapter 5

Introduction To Materials Science FOR ENGINEERS, Ch. 5. Diffusion. MSE 201 Callister Chapter 5 Diffusion MSE 21 Callister Chapter 5 1 Goals: Diffusion - how do atoms move through solids? Fundamental concepts and language Diffusion mechanisms Vacancy diffusion Interstitial diffusion Impurities Diffusion

More information

MAT12X Intermediate Algebra

MAT12X Intermediate Algebra MAT12X Intermediate Algebra Workshop I - Exponential Functions LEARNING CENTER Overview Workshop I Exponential Functions of the form y = ab x Properties of the increasing and decreasing exponential functions

More information

The two dimensional heat equation

The two dimensional heat equation The two dimensional heat equation Ryan C. Trinity University Partial Differential Equations March 6, 2012 Physical motivation Consider a thin rectangular plate made of some thermally conductive material.

More information

Microeconomic Theory: Basic Math Concepts

Microeconomic Theory: Basic Math Concepts Microeconomic Theory: Basic Math Concepts Matt Van Essen University of Alabama Van Essen (U of A) Basic Math Concepts 1 / 66 Basic Math Concepts In this lecture we will review some basic mathematical concepts

More information

College of the Holy Cross, Spring 2009 Math 373, Partial Differential Equations Midterm 1 Practice Questions

College of the Holy Cross, Spring 2009 Math 373, Partial Differential Equations Midterm 1 Practice Questions College of the Holy Cross, Spring 29 Math 373, Partial Differential Equations Midterm 1 Practice Questions 1. (a) Find a solution of u x + u y + u = xy. Hint: Try a polynomial of degree 2. Solution. Use

More information

Heat Transfer and Energy

Heat Transfer and Energy What is Heat? Heat Transfer and Energy Heat is Energy in Transit. Recall the First law from Thermodynamics. U = Q - W What did we mean by all the terms? What is U? What is Q? What is W? What is Heat Transfer?

More information

Steady Heat Conduction

Steady Heat Conduction Steady Heat Conduction In thermodynamics, we considered the amount of heat transfer as a system undergoes a process from one equilibrium state to another. hermodynamics gives no indication of how long

More information

Algebra II EOC Practice Test

Algebra II EOC Practice Test Algebra II EOC Practice Test Name Date 1. Suppose point A is on the unit circle shown above. What is the value of sin? (A) 0.736 (B) 0.677 (C) (D) (E) none of these 2. Convert to radians. (A) (B) (C) (D)

More information

39th International Physics Olympiad - Hanoi - Vietnam - 2008. Theoretical Problem No. 3

39th International Physics Olympiad - Hanoi - Vietnam - 2008. Theoretical Problem No. 3 CHANGE OF AIR TEMPERATURE WITH ALTITUDE, ATMOSPHERIC STABILITY AND AIR POLLUTION Vertical motion of air governs many atmospheric processes, such as the formation of clouds and precipitation and the dispersal

More information

POISSON AND LAPLACE EQUATIONS. Charles R. O Neill. School of Mechanical and Aerospace Engineering. Oklahoma State University. Stillwater, OK 74078

POISSON AND LAPLACE EQUATIONS. Charles R. O Neill. School of Mechanical and Aerospace Engineering. Oklahoma State University. Stillwater, OK 74078 21 ELLIPTICAL PARTIAL DIFFERENTIAL EQUATIONS: POISSON AND LAPLACE EQUATIONS Charles R. O Neill School of Mechanical and Aerospace Engineering Oklahoma State University Stillwater, OK 74078 2nd Computer

More information

How To Understand Algebraic Equations

How To Understand Algebraic Equations Please use the resources below to review mathematical concepts found in chemistry. 1. Many Online videos by MiraCosta Professor Julie Harland: www.yourmathgal.com 2. Text references in red/burgundy and

More information

Chapter 5: Diffusion. 5.1 Steady-State Diffusion

Chapter 5: Diffusion. 5.1 Steady-State Diffusion : Diffusion Diffusion: the movement of particles in a solid from an area of high concentration to an area of low concentration, resulting in the uniform distribution of the substance Diffusion is process

More information

1. Then f has a relative maximum at x = c if f(c) f(x) for all values of x in some

1. Then f has a relative maximum at x = c if f(c) f(x) for all values of x in some Section 3.1: First Derivative Test Definition. Let f be a function with domain D. 1. Then f has a relative maximum at x = c if f(c) f(x) for all values of x in some open interval containing c. The number

More information

Lecture 2. Marginal Functions, Average Functions, Elasticity, the Marginal Principle, and Constrained Optimization

Lecture 2. Marginal Functions, Average Functions, Elasticity, the Marginal Principle, and Constrained Optimization Lecture 2. Marginal Functions, Average Functions, Elasticity, the Marginal Principle, and Constrained Optimization 2.1. Introduction Suppose that an economic relationship can be described by a real-valued

More information

EXISTENCE AND NON-EXISTENCE RESULTS FOR A NONLINEAR HEAT EQUATION

EXISTENCE AND NON-EXISTENCE RESULTS FOR A NONLINEAR HEAT EQUATION Sixth Mississippi State Conference on Differential Equations and Computational Simulations, Electronic Journal of Differential Equations, Conference 5 (7), pp. 5 65. ISSN: 7-669. UL: http://ejde.math.txstate.edu

More information

MATH 31B: MIDTERM 1 REVIEW. 1. Inverses. yx 3y = 1. x = 1 + 3y y 4( 1) + 32 = 1

MATH 31B: MIDTERM 1 REVIEW. 1. Inverses. yx 3y = 1. x = 1 + 3y y 4( 1) + 32 = 1 MATH 3B: MIDTERM REVIEW JOE HUGHES. Inverses. Let f() = 3. Find the inverse g() for f. Solution: Setting y = ( 3) and solving for gives and g() = +3. y 3y = = + 3y y. Let f() = 4 + 3. Find a domain on

More information

3. Reaction Diffusion Equations Consider the following ODE model for population growth

3. Reaction Diffusion Equations Consider the following ODE model for population growth 3. Reaction Diffusion Equations Consider the following ODE model for population growth u t a u t u t, u 0 u 0 where u t denotes the population size at time t, and a u plays the role of the population dependent

More information

MATH 10: Elementary Statistics and Probability Chapter 5: Continuous Random Variables

MATH 10: Elementary Statistics and Probability Chapter 5: Continuous Random Variables MATH 10: Elementary Statistics and Probability Chapter 5: Continuous Random Variables Tony Pourmohamad Department of Mathematics De Anza College Spring 2015 Objectives By the end of this set of slides,

More information

Feed a Fever..., or How long should I leave a thermometer in my mouth to take my body temperature accurately?

Feed a Fever..., or How long should I leave a thermometer in my mouth to take my body temperature accurately? Feed a Fever..., or How long should I leave a thermometer in my mouth to take my body temperature accurately? Abstract: The purpose of this project is to apply Newton s Law of Cooling to study the rate

More information

MIT 2.810 Manufacturing Processes and Systems. Homework 6 Solutions. Casting. October 15, 2015. Figure 1: Casting defects

MIT 2.810 Manufacturing Processes and Systems. Homework 6 Solutions. Casting. October 15, 2015. Figure 1: Casting defects MIT 2.810 Manufacturing Processes and Systems Casting October 15, 2015 Problem 1. Casting defects. (a) Figure 1 shows various defects and discontinuities in cast products. Review each one and offer solutions

More information

3.2 Sources, Sinks, Saddles, and Spirals

3.2 Sources, Sinks, Saddles, and Spirals 3.2. Sources, Sinks, Saddles, and Spirals 6 3.2 Sources, Sinks, Saddles, and Spirals The pictures in this section show solutions to Ay 00 C By 0 C Cy D 0. These are linear equations with constant coefficients

More information

List the elements of the given set that are natural numbers, integers, rational numbers, and irrational numbers. (Enter your answers as commaseparated

List the elements of the given set that are natural numbers, integers, rational numbers, and irrational numbers. (Enter your answers as commaseparated MATH 142 Review #1 (4717995) Question 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 Description This is the review for Exam #1. Please work as many problems as possible

More information

Two-Dimensional Conduction: Shape Factors and Dimensionless Conduction Heat Rates

Two-Dimensional Conduction: Shape Factors and Dimensionless Conduction Heat Rates Two-Dimensional Conduction: Shape Factors and Dimensionless Conduction Heat Rates Chapter 4 Sections 4.1 and 4.3 make use of commercial FEA program to look at this. D Conduction- General Considerations

More information

CHAPTER FIVE. Solutions for Section 5.1. Skill Refresher. Exercises

CHAPTER FIVE. Solutions for Section 5.1. Skill Refresher. Exercises CHAPTER FIVE 5.1 SOLUTIONS 265 Solutions for Section 5.1 Skill Refresher S1. Since 1,000,000 = 10 6, we have x = 6. S2. Since 0.01 = 10 2, we have t = 2. S3. Since e 3 = ( e 3) 1/2 = e 3/2, we have z =

More information

Fixed Point Theorems

Fixed Point Theorems Fixed Point Theorems Definition: Let X be a set and let T : X X be a function that maps X into itself. (Such a function is often called an operator, a transformation, or a transform on X, and the notation

More information

Heat Transfer Prof. Dr. Aloke Kumar Ghosal Department of Chemical Engineering Indian Institute of Technology, Guwahati

Heat Transfer Prof. Dr. Aloke Kumar Ghosal Department of Chemical Engineering Indian Institute of Technology, Guwahati Heat Transfer Prof. Dr. Aloke Kumar Ghosal Department of Chemical Engineering Indian Institute of Technology, Guwahati Module No. # 02 One Dimensional Steady State Heat Transfer Lecture No. # 05 Extended

More information

1 Completeness of a Set of Eigenfunctions. Lecturer: Naoki Saito Scribe: Alexander Sheynis/Allen Xue. May 3, 2007. 1.1 The Neumann Boundary Condition

1 Completeness of a Set of Eigenfunctions. Lecturer: Naoki Saito Scribe: Alexander Sheynis/Allen Xue. May 3, 2007. 1.1 The Neumann Boundary Condition MAT 280: Laplacian Eigenfunctions: Theory, Applications, and Computations Lecture 11: Laplacian Eigenvalue Problems for General Domains III. Completeness of a Set of Eigenfunctions and the Justification

More information

DETERMINATION OF THE HEAT STORAGE CAPACITY OF PCM AND PCM-OBJECTS AS A FUNCTION OF TEMPERATURE. E. Günther, S. Hiebler, H. Mehling

DETERMINATION OF THE HEAT STORAGE CAPACITY OF PCM AND PCM-OBJECTS AS A FUNCTION OF TEMPERATURE. E. Günther, S. Hiebler, H. Mehling DETERMINATION OF THE HEAT STORAGE CAPACITY OF PCM AND PCM-OBJECTS AS A FUNCTION OF TEMPERATURE E. Günther, S. Hiebler, H. Mehling Bavarian Center for Applied Energy Research (ZAE Bayern) Walther-Meißner-Str.

More information

19.7. Applications of Differential Equations. Introduction. Prerequisites. Learning Outcomes. Learning Style

19.7. Applications of Differential Equations. Introduction. Prerequisites. Learning Outcomes. Learning Style Applications of Differential Equations 19.7 Introduction Blocks 19.2 to 19.6 have introduced several techniques for solving commonly-occurring firstorder and second-order ordinary differential equations.

More information

Practical Applications of Freezing by Boiling Process

Practical Applications of Freezing by Boiling Process Practical Applications of Freezing by Boiling Process Kenny Gotlieb, Sasha Mitchell and Daniel Walsh Physics Department, Harvard-Westlake School 37 Coldwater Canyon, N. Hollywood, CA 9164 Introduction

More information

1. (from Stewart, page 586) Solve the initial value problem.

1. (from Stewart, page 586) Solve the initial value problem. . (from Stewart, page 586) Solve the initial value problem.. (from Stewart, page 586) (a) Solve y = y. du dt = t + sec t u (b) Solve y = y, y(0) = 0., u(0) = 5. (c) Solve y = y, y(0) = if possible. 3.

More information

Lecture 9, Thermal Notes, 3.054

Lecture 9, Thermal Notes, 3.054 Lecture 9, Thermal Notes, 3.054 Thermal Properties of Foams Closed cell foams widely used for thermal insulation Only materials with lower conductivity are aerogels (tend to be brittle and weak) and vacuum

More information

Carbon Cable. Sergio Rubio Carles Paul Albert Monte

Carbon Cable. Sergio Rubio Carles Paul Albert Monte Carbon Cable Sergio Rubio Carles Paul Albert Monte Carbon, Copper and Manganine PhYsical PropERTieS CARBON PROPERTIES Carbon physical Properties Temperature Coefficient α -0,0005 ºC-1 Density D 2260 kg/m3

More information

Algebra 2 Chapter 1 Vocabulary. identity - A statement that equates two equivalent expressions.

Algebra 2 Chapter 1 Vocabulary. identity - A statement that equates two equivalent expressions. Chapter 1 Vocabulary identity - A statement that equates two equivalent expressions. verbal model- A word equation that represents a real-life problem. algebraic expression - An expression with variables.

More information

Module 1 : Conduction. Lecture 5 : 1D conduction example problems. 2D conduction

Module 1 : Conduction. Lecture 5 : 1D conduction example problems. 2D conduction Module 1 : Conduction Lecture 5 : 1D conduction example problems. 2D conduction Objectives In this class: An example of optimization for insulation thickness is solved. The 1D conduction is considered

More information

Math 267 - Practice exam 2 - solutions

Math 267 - Practice exam 2 - solutions C Roettger, Fall 13 Math 267 - Practice exam 2 - solutions Problem 1 A solution of 10% perchlorate in water flows at a rate of 8 L/min into a tank holding 200L pure water. The solution is kept well stirred

More information

3. Diffusion of an Instantaneous Point Source

3. Diffusion of an Instantaneous Point Source 3. Diffusion of an Instantaneous Point Source The equation of conservation of mass is also known as the transport equation, because it describes the transport of scalar species in a fluid systems. In this

More information

arxiv:physics/0004029v1 [physics.ed-ph] 14 Apr 2000

arxiv:physics/0004029v1 [physics.ed-ph] 14 Apr 2000 arxiv:physics/0004029v1 [physics.ed-ph] 14 Apr 2000 Lagrangians and Hamiltonians for High School Students John W. Norbury Physics Department and Center for Science Education, University of Wisconsin-Milwaukee,

More information

Differential Relations for Fluid Flow. Acceleration field of a fluid. The differential equation of mass conservation

Differential Relations for Fluid Flow. Acceleration field of a fluid. The differential equation of mass conservation Differential Relations for Fluid Flow In this approach, we apply our four basic conservation laws to an infinitesimally small control volume. The differential approach provides point by point details of

More information

2008 AP Calculus AB Multiple Choice Exam

2008 AP Calculus AB Multiple Choice Exam 008 AP Multiple Choice Eam Name 008 AP Calculus AB Multiple Choice Eam Section No Calculator Active AP Calculus 008 Multiple Choice 008 AP Calculus AB Multiple Choice Eam Section Calculator Active AP Calculus

More information

Definition 8.1 Two inequalities are equivalent if they have the same solution set. Add or Subtract the same value on both sides of the inequality.

Definition 8.1 Two inequalities are equivalent if they have the same solution set. Add or Subtract the same value on both sides of the inequality. 8 Inequalities Concepts: Equivalent Inequalities Linear and Nonlinear Inequalities Absolute Value Inequalities (Sections 4.6 and 1.1) 8.1 Equivalent Inequalities Definition 8.1 Two inequalities are equivalent

More information

Second Order Systems

Second Order Systems Second Order Systems Second Order Equations Standard Form G () s = τ s K + ζτs + 1 K = Gain τ = Natural Period of Oscillation ζ = Damping Factor (zeta) Note: this has to be 1.0!!! Corresponding Differential

More information

PRACTICE FINAL. Problem 1. Find the dimensions of the isosceles triangle with largest area that can be inscribed in a circle of radius 10cm.

PRACTICE FINAL. Problem 1. Find the dimensions of the isosceles triangle with largest area that can be inscribed in a circle of radius 10cm. PRACTICE FINAL Problem 1. Find the dimensions of the isosceles triangle with largest area that can be inscribed in a circle of radius 1cm. Solution. Let x be the distance between the center of the circle

More information

CFD SIMULATION OF SDHW STORAGE TANK WITH AND WITHOUT HEATER

CFD SIMULATION OF SDHW STORAGE TANK WITH AND WITHOUT HEATER International Journal of Advancements in Research & Technology, Volume 1, Issue2, July-2012 1 CFD SIMULATION OF SDHW STORAGE TANK WITH AND WITHOUT HEATER ABSTRACT (1) Mr. Mainak Bhaumik M.E. (Thermal Engg.)

More information

Logarithmic and Exponential Equations

Logarithmic and Exponential Equations 11.5 Logarithmic and Exponential Equations 11.5 OBJECTIVES 1. Solve a logarithmic equation 2. Solve an exponential equation 3. Solve an application involving an exponential equation Much of the importance

More information

Scholars Research Library

Scholars Research Library Available online at www.scholarsresearchlibrary.com Scholars Research Library Archives of Physics Research, 2010, 1 (2):103-111 (http://scholarsresearchlibrary.com/archive.html) ISSN 0976-0970 Lubricating

More information

Lateral Acceleration. Chris Garner

Lateral Acceleration. Chris Garner Chris Garner Forward Acceleration Forward acceleration is easy to quantify and understand. Forward acceleration is simply the rate of change in speed. In car terms, the quicker the car accelerates, the

More information

The integrating factor method (Sect. 2.1).

The integrating factor method (Sect. 2.1). The integrating factor method (Sect. 2.1). Overview of differential equations. Linear Ordinary Differential Equations. The integrating factor method. Constant coefficients. The Initial Value Problem. Variable

More information

Ch 8 Potential energy and Conservation of Energy. Question: 2, 3, 8, 9 Problems: 3, 9, 15, 21, 24, 25, 31, 32, 35, 41, 43, 47, 49, 53, 55, 63

Ch 8 Potential energy and Conservation of Energy. Question: 2, 3, 8, 9 Problems: 3, 9, 15, 21, 24, 25, 31, 32, 35, 41, 43, 47, 49, 53, 55, 63 Ch 8 Potential energ and Conservation of Energ Question: 2, 3, 8, 9 Problems: 3, 9, 15, 21, 24, 25, 31, 32, 35, 41, 43, 47, 49, 53, 55, 63 Potential energ Kinetic energ energ due to motion Potential energ

More information

SIXTY STUDY QUESTIONS TO THE COURSE NUMERISK BEHANDLING AV DIFFERENTIALEKVATIONER I

SIXTY STUDY QUESTIONS TO THE COURSE NUMERISK BEHANDLING AV DIFFERENTIALEKVATIONER I Lennart Edsberg, Nada, KTH Autumn 2008 SIXTY STUDY QUESTIONS TO THE COURSE NUMERISK BEHANDLING AV DIFFERENTIALEKVATIONER I Parameter values and functions occurring in the questions belowwill be exchanged

More information

6.4 Logarithmic Equations and Inequalities

6.4 Logarithmic Equations and Inequalities 6.4 Logarithmic Equations and Inequalities 459 6.4 Logarithmic Equations and Inequalities In Section 6.3 we solved equations and inequalities involving exponential functions using one of two basic strategies.

More information

Module 1, Lesson 3 Temperature vs. resistance characteristics of a thermistor. Teacher. 45 minutes

Module 1, Lesson 3 Temperature vs. resistance characteristics of a thermistor. Teacher. 45 minutes Module 1, Lesson 3 Temperature vs. resistance characteristics of a thermistor 45 minutes Teacher Purpose of this lesson How thermistors are used to measure temperature. Using a multimeter to measure the

More information

Algebra EOC Practice Test #2

Algebra EOC Practice Test #2 Class: Date: Algebra EOC Practice Test #2 Multiple Choice Identify the choice that best completes the statement or answers the question. 1. Which of the following lines is perpendicular to the line y =

More information

Numerical Solution of Differential Equations

Numerical Solution of Differential Equations Numerical Solution of Differential Equations Dr. Alvaro Islas Applications of Calculus I Spring 2008 We live in a world in constant change We live in a world in constant change We live in a world in constant

More information

Understanding Poles and Zeros

Understanding Poles and Zeros MASSACHUSETTS INSTITUTE OF TECHNOLOGY DEPARTMENT OF MECHANICAL ENGINEERING 2.14 Analysis and Design of Feedback Control Systems Understanding Poles and Zeros 1 System Poles and Zeros The transfer function

More information

Objectives. Materials

Objectives. Materials . Objectives Activity 12 To model the process of cooling To use a cooling curve to simulate a forensic scenario to predict the time of death To use technology to find an exponential plot Materials TI-83

More information

TCOM 370 NOTES 99-4 BANDWIDTH, FREQUENCY RESPONSE, AND CAPACITY OF COMMUNICATION LINKS

TCOM 370 NOTES 99-4 BANDWIDTH, FREQUENCY RESPONSE, AND CAPACITY OF COMMUNICATION LINKS TCOM 370 NOTES 99-4 BANDWIDTH, FREQUENCY RESPONSE, AND CAPACITY OF COMMUNICATION LINKS 1. Bandwidth: The bandwidth of a communication link, or in general any system, was loosely defined as the width of

More information

Make sure you look at the reminders or examples before each set of problems to jog your memory! Solve

Make sure you look at the reminders or examples before each set of problems to jog your memory! Solve Name Date Make sure you look at the reminders or examples before each set of problems to jog your memory! I. Solving Linear Equations 1. Eliminate parentheses. Combine like terms 3. Eliminate terms by

More information

Review of Fundamental Mathematics

Review of Fundamental Mathematics Review of Fundamental Mathematics As explained in the Preface and in Chapter 1 of your textbook, managerial economics applies microeconomic theory to business decision making. The decision-making tools

More information

FINAL EXAM SECTIONS AND OBJECTIVES FOR COLLEGE ALGEBRA

FINAL EXAM SECTIONS AND OBJECTIVES FOR COLLEGE ALGEBRA FINAL EXAM SECTIONS AND OBJECTIVES FOR COLLEGE ALGEBRA 1.1 Solve linear equations and equations that lead to linear equations. a) Solve the equation: 1 (x + 5) 4 = 1 (2x 1) 2 3 b) Solve the equation: 3x

More information

Graphing calculators Transparencies (optional)

Graphing calculators Transparencies (optional) What if it is in pieces? Piecewise Functions and an Intuitive Idea of Continuity Teacher Version Lesson Objective: Length of Activity: Students will: Recognize piecewise functions and the notation used

More information

. Address the following issues in your solution:

. Address the following issues in your solution: CM 3110 COMSOL INSTRUCTIONS Faith Morrison and Maria Tafur Department of Chemical Engineering Michigan Technological University, Houghton, MI USA 22 November 2012 Zhichao Wang edits 21 November 2013 revised

More information

FLUID DYNAMICS. Intrinsic properties of fluids. Fluids behavior under various conditions

FLUID DYNAMICS. Intrinsic properties of fluids. Fluids behavior under various conditions FLUID DYNAMICS Intrinsic properties of fluids Fluids behavior under various conditions Methods by which we can manipulate and utilize the fluids to produce desired results TYPES OF FLUID FLOW Laminar or

More information

Lecture 7: Continuous Random Variables

Lecture 7: Continuous Random Variables Lecture 7: Continuous Random Variables 21 September 2005 1 Our First Continuous Random Variable The back of the lecture hall is roughly 10 meters across. Suppose it were exactly 10 meters, and consider

More information

EXIT TIME PROBLEMS AND ESCAPE FROM A POTENTIAL WELL

EXIT TIME PROBLEMS AND ESCAPE FROM A POTENTIAL WELL EXIT TIME PROBLEMS AND ESCAPE FROM A POTENTIAL WELL Exit Time problems and Escape from a Potential Well Escape From a Potential Well There are many systems in physics, chemistry and biology that exist

More information

Mixing Warm and Cold Water

Mixing Warm and Cold Water Mixing Warm and Cold Water A Continuing Investigation of Thermal Pollution By Kevin White 1 Context: This lesson is intended for students conducting an ongoing study of thermal pollution. Perhaps, students

More information

DIFFERENTIABILITY OF COMPLEX FUNCTIONS. Contents

DIFFERENTIABILITY OF COMPLEX FUNCTIONS. Contents DIFFERENTIABILITY OF COMPLEX FUNCTIONS Contents 1. Limit definition of a derivative 1 2. Holomorphic functions, the Cauchy-Riemann equations 3 3. Differentiability of real functions 5 4. A sufficient condition

More information

Math 2400 - Numerical Analysis Homework #2 Solutions

Math 2400 - Numerical Analysis Homework #2 Solutions Math 24 - Numerical Analysis Homework #2 Solutions 1. Implement a bisection root finding method. Your program should accept two points, a tolerance limit and a function for input. It should then output

More information

Chapter Outline. Diffusion - how do atoms move through solids?

Chapter Outline. Diffusion - how do atoms move through solids? Chapter Outline iffusion - how do atoms move through solids? iffusion mechanisms Vacancy diffusion Interstitial diffusion Impurities The mathematics of diffusion Steady-state diffusion (Fick s first law)

More information