Solving Nernst-Planck Equations -Project Report-

Size: px
Start display at page:

Download "Solving Nernst-Planck Equations -Project Report-"

Transcription

1 Solving Nernst-Planck Equations -Project Report- Leo Kim Physics December

2 1 Introduction The first and ultimate goal of this project is solving Nernst-Planck equation numerically. I developed and expanded this topic from my old project topic, the simple diffusion equation. To be honest with you, as you already mentioned, it is very interesting but very ambitious. However, I did learn a lot from this project although I didn t accomplish what I intended to do in the first place. I used the various types of programs to do this project, including Maple, Mathematica, Excel, and many different kind of image tools. It is really hard to edit and produce the postscript files on the Window without any pro-programs such as Photoshop. Not only I learned and used various type of computer programs to fulfill the computational part of the course, but I also read different books to understand the actual physics behind it. This is the computational PHYSICS course, so I believe I actually need to understand the physics of my project. Moreover, I also believe that it is really important to do the physics topic which you feel interest about. For such a reason, this project gives me that bittersweet taste of the challenging but fun task. Basically, I did start from the scratch. The heart of my project is finite difference method which will solve the PDE numerically. I did sample examples for the certain wave and heat problems with finite difference method in Excel. Then I used Maple and Mathematica to write a code to solve PDE in such a way and plot them. For the last part, I actually tried to solve Nernst-Planck equation with Excel which turns out to be interesting. 2 Theory This section explains briefly about the Nernst-Planck equation, and finite difference method for PDE. Also, 2.1 Nernst-Planck equation Nernst-Planck equation can be thought as the advanced version of the simple diffusion equation because it describes the concentration change due to the properties of diffusion and effect of the electrostatics. And you can say it is more realistic as well because pretty much everything in our body has a net charge as an ion. Although, I did find the article which explains how to compute exact solution but even with that article[1] I did have some difficult time to understand the solution fully. As I already mention, PDE needs certain boundary conditions to be solved. I will choose closed system where no extra ions can be diffused in and out. Then I will use equation to find flux of anions and cations over long time and eventually they will be in equilibrium state. For this particular case, the Nernst-Planck equations[1] will be Φ a (x, t) = D a ( n a / x) (qd a n a /kt )( φ/ x), (1) Φ b (x, t) = D b ( n b / x) + (qd b n b /kt )( φ/ x), (2) 2

3 n a / t = Φ a / x, (3) n b / t = Φ b / x, (4) where n a is the number of cations per unit volume, Φ a is the flux of cations, n b is the number of anions per unit volume, Φ b is the flux of anions, φ is the electric potential, k is Boltzmann s constant, T is the absolute temperature, and D a and D b are the diffusion coefficients of the cations and the anions. q and -q are charge of cation and anion. However, this PDE is not simple to solve even though you use the computer program because it is non-linear PDE. But, you can apply the physical conditions, which is just described previously, you can get the linear PDE. 2 Φ/ x 2 = (4/ɛ)(n a n b ), (5) Equation (5) is the Poisson s equation which will take care of the potential term of the original Nernst-Planck equation. Then you need the boundary conditions. n a (0, t)/ x = 0, n b (0, t)/ x = 0, (6) n a (L, t)/ x = 0, n b (L, t)/ x = 0, (7) After sub-in the equation (5) to the original Nernst-Planck equation and applied equation (6) and (7) produce, n a / t = D a ( 2 n a / x 2 ) + (qd a n /kt )( 2 Φ/ x 2 ), (8) n b / t = D b ( 2 n b / x 2 ) + (qd b n /kt )( 2 Φ/ x 2 ), (9) where the n is the number of the ions in the equilibrium. However, you can neglect the effect of the potential terms due to the effect of the ionic screening[2]. Effect of the ionic screening introduces the co-ions around the charge which will make the electronic interaction be valid for within nano length so the potential terms have neglecting value. And finally, you get the equations in form, Equations to be solved by numerical method n a / t = D a ( 2 n a / x 2 ) αd a (n a n b ), (11) n b / t = D b ( 2 n b / x 2 ) + αd b (n a n b ),(12) where n a and n b are function of x and t. D a, D a, and α are constants. 2.2 The Finite Difference Method [3] Finite Difference Method is the main tool of my project. Its concept is quite simple but actual computation might take long and boring. There are two different ways to solve the heat or wave equation with this method. But, I will show only the heat equation since the simplified Nernst-planck equation indeed looks like the heat equation but Nernst-Planck equation has the extra coupled term. 3

4 First you have to choose the time and distance steps for the grid in which the the numerical solution of the certain equation will be found. Of course, you can decide the how big is the grid will be. And, yes if you can produce more grid, that will be better. It is same as you take more N for your normal numerical solution. Your discretization expression will find the value of the next layer of the grid then you can use that value to find the next upper layer value of the grid and so on. Now, this is time to do the discretization of the heat equation. The basic and general heat equations have first partial derivative respect to time and second partial derivative respect to the distance. Then discretization of each of term will be, u t (ih, jk) 1/k(u i,j+1 u ij ), (13) u xx (ih, jk) 1/h 2 (u i+1,j 2u ij + u i 1.j ), (14) where k is the time step and h is the distance step. And finally, you can produce the discretization of the heat equation, u i,j+1 = (1 2s)u ij + s(u i+1,j + u i 1,j ), (15) s = k/h 2, (16) Similarly, you can find the discretization of the wave equation, u i,j+1 = 2(1 s)u ij + s(u i+1,j + u i 1,j ) u i,j 1, (17) s = k 2 /h 2, (18) I work out sample wave equation for practice in Excel and you can find out them in the Result section. 3 Results and Discussion In this section, there will be results of work and discussion. 3.1 Practice: Numerical solution for wave function on Excel For this particular example, I used the Excel to find the numerical values. Excel provides the excellent grid for me so all I need to do is that determine and set the constants for the time and distance steps. Then I need to carefully type in the expression of the discretization of the wave equation. Wave function is given, 4

5 u tt = 4u xx, 0x30, 0t30, (19) u(0, t) = 0, (20) u(l, t) = 0, (21) u(x, 0) = p(x), (22) u t (x, 0) = 0, (23) where p(x) is Although my Nernst-Planck equation is similar to heat equation, I did the wave equation because if I plot the numerical solution then I know if that numerical solution is wrong or right by just looking at the graph. If my numerical solution for the wave is correct, it should be periodic function. But, I can t be sure that by just looking at the 1-D graph of the heat equation, the numerical solution of the heat equation is right or wrong. And, indeed, the graph of the numerical solution of wave looks promising. The size and resolution of the image are poor but you can see the full size version in my Excel Figure 1: Graph of the numerical solution of the wave function file(wave function.xls). You just need to change the worksheets by clicking which are located at the left corner of the excel documents. However, the shape of graph is drawn as expected. As you can see, every time the steps are added, the shape of the graph becomes more clear. Thus, I use the smaller time step so I can improve the numerical solution which is also done in the same excel file. 5

6 3.2 Practice:Wave equation solving code in Mathematica Originally, I was trying this job with the Maple but something terrible things happened. The Maple was too heavy for my computer so long time usage of the Maple crushed my system, exactly its own works. So I can t use any Maple data or code for this project even if there were some. I restart everything with the Mathematica and I think I did make working code. Actual code:[4],[5],[6]. FDgrid[n, m ]:=Module [ {i}, u = Table[0, {n}, {m}]; For [ i = 1, i n, i++, u [[i,1]] = f[i]; ] ; For [i = 2, i n 1, i++, u [[i,2]] = ( 1 r 2) ] ] f[i] + k g[i] + r2 2 (f[i + 1] + f[i 1]); ; ; This code will generate the grid. FDsolve[n, m ]:= Module[{i, j}, For[j = 3, j m, j++, For[i = 2, i n 1, i++, u u[[i,j]] = ( 2 2r 2) u [[i,j 1]] + r 2 ( ) u [[i+1,j 1]] + u [[i 1,j 1]] u [[i,j 2]] ; ] ; ] ; ] ; This code will actually solve the wave equation way I did in Excel. Now I will set up the wave equation for this particular example. a = 1.0; b = 1.0; c = 2.0; n = 11; m = 21; F [x ] = Sin[πx] + Sin[2πx]; G[x ] = 0.0; h = a n 1 ; k = b m 1 ; f[i ] = F [h(i 1)]; g[j ] = G[k(k 1)]; F[] and G[] are initial conditions and boundary conditions are zero. Now, let s solve the equation and plot it. r = ck h ; FDgrid[n, m]; FDsolve[n, m]; ListPlot3D[u, AxesLabel {"t(j)", "x(i)", "u"}]; Print["The numerical solution to the wave P.D.E."]; Print ["u tt (x,t)=4 u xx (x,t)"] ; 6

7 Print[" u(x,0) = f(x) = ", F [x]]; Print ["u t (0,x) = g(x) = ", G[x]] ; Print["c = ", c]; Print["h = ", h]; Print["k = ", k]; [ Print " ck h = ", ck ] h ; Figure 2: The numerical solution to the wave P.D.E. The numerical solution to the wave P.D.E. u tt (x,t)=4 u xx (x,t) u(x,0) = f(x) = Sin[πx] + Sin[2πx] u t (0,x) = g(x) = 0. c = 2. h = 0.1 k = 0.05 ck h = 1. Let s compare with the exact solution. The code below will plot the real wave function. In order to compare both graphs easily, I set up the grid of this graph as m and n. U[x, t ] = Sin[πx]Cos[2πt] + Sin[2πx]Cos[4πt]; SetOptions[Plot3D, PlotPoints {m, n}]; Plot3D[U[x, t], {t, 0, 1}, {x, 0, 1}, AxesLabel {"t(j)", "x(i)", "u"}]; Print["The analytic solution to the wave P.D.E."]; Print ["u tt (x,t)=4 u xx (x,t)"] ; Print[" u(x,0) = f(x) = ", F [x]]; Print ["u t (0,x) = g(x) = ", G[x]] ; Print[" u[x,t] = ", U[x, t]]; The analytic solution to the wave P.D.E. u tt (x,t)=4 u xx (x,t) u(x,0) = f(x) = Sin[πx] + Sin[2πx] 7

8 Figure 3: The analytic solution to the wave P.D.E. u t (0,x) = g(x) = 0. u[x,t] = Cos[2πt]Sin[πx] + Cos[4πt]Sin[2πx] u[x,t] = Cos[2πt]Sin[πx] + Cos[4πt]Sin[2πx] As you can see, both graphs are exactly same. Code works great. Now, let s make the table of numbers which is similar to the one in the Excel. 8

9 This code will generate the table. Print["The numerical solution to the wave P.D.E."]; Print ["u tt (x,t)=4 u xx (x,t)", "\n"] ; Print[NumberForm[TableForm[Transpose[Chop[u]]], 3]]; The numerical solution to the wave P.D.E. u tt (x,t)=4 u xx (x,t) Real1: Solving Nernst-Planck equation in the Excel1 Finally, we come to this far, my original goal to solve the Nernst-Planck equation. As I did for the wave-function, I hope that Nernst-Planck equation can be done in Excel so I can carry onto the Mathematica. For the simplicity sake, I will introduce easier notations and constant values: [1]. a = u ij, (24) b = u i,j+1, (25) c = u i+1,j, (26) d = u i 1,j), (27) s = D a k/h 2, (28) w = αd a k, (29) α = 4πq 2 n /ɛk b T, (30) 9

10 D a = cm 2 sec 1, (31) D b = cm 2 sec 1, (32) L = 1.0cm, (33) T = K, (34) ɛ = 78.53, (35) q = , (36) n = cm 3, (37) K b =Boltzmann constant, (38) and of course, s and w will have D b when they are dealing with n b. Everything is calculated in the Excel worksheet(nernst-planck equation.xls). Since equation(11) and (12) are coupled, their discretization is somewhat different with the heat or wave equation. For n a (in Excel, this is expressed as u family), discretization is b = (1 2s w)a + s(c + d) + wv i,j (v i,j is the u i,j of n b ), and for n b (in Excel, this is expressed as v family), discretization is b = (1 2s w)a + s(c + d) + wu i,j. As you can see both have extra ending term which is not their own function. Thus, I decide to use the cross reference in the Excel. Basically, I will make two work sheets which are one for n a or u and one for n b or v. Then I will construct the layers one by one but with each other s one-lower layer value. That is what the discretization equation says! In such a mechanism, I only build the one layer by time since both layers are building at same time. If you don t have the layers of another, you can t find the next value of your own. Figure 4: Graph of u 10

11 Figure 5: Graph of v However, look at these graphs. They are graph of worksheet u and v in the Excel file. They don t tell much about the concentration behavior. They just describe the initial distribution of the concentration which I create in the first place. Originally, I plan to give the Gaussian distribution for the initial state of concentration in the box(i said box, because it is the isolated system). Furthermore, the behavior of both u and v should be almost exactly proportional to the cos(πx/l), but they don t seem to follow the rule of the equation. However, they are inversed each other, that can be explained by the charge of the ion. u is supposed to describe the motion of the cations and v is supposed to destine the motion of the anions so it can be reasonable they may have inverse relationship. And due the difference of the diffusion constant,d their max value of u and min value of v don t perfectly cancel each others. That is a good feature of these graphs since their behaviors are expected as difference of D. This time, I use smaller distance step so I can get more accurate graphs. Now, the distance steps are about twice as much as compare to the first one. And all of the work is in the Uu and Vv worksheets in the Excel file. 11

12 Figure 6: Graph of u for uu worksheet Figure 7: Graph of v for vv worksheet 12

13 They are not also telling much about the motion of the concentration. However, at least they have better shape of the graph which will support the as the steps get smaller, you will get more accurate answers. That is the main concepts of all of the numerical methods so I believe, my approach and method to this certain problem is not that bad so far. Or my first assumption and set up and property of the equation can be very wrong because as you can see, the shape of the graph doesn t change over time, static state. So problem can be arise from that equation tells concentration to move but my given conditions and set up of the discretization tell concentration not to move. 3.4 Real2: Solving Nernst-Planck equation in the Excel2 I can t give up just like that, so I tried little bit different approach this time. There must be N total in the system and I set that N total = n a + n b = constant = 2n. And I am still using the more smaller space steps. These works are doen in the worksheet uuu and vvvv in the Excel file. Figure 8: Graph of u for uuu worksheet 13

14 Figure 9: Graph of v for vvv worksheet The results look very interesting. The graph of the v is totally in the negative side and its max value is 0 which suggests all the anions are attracted to the cation side. That can be possible since electrons are pretty much only movable and want to move somewhere if there is attraction. Moreover, the shapes of graphs are more like cos which is the expected behavior for the t=long time. However, this is not answer for sure and this can t satisfy me due to the face that this graph is also having no effect over time. Their shapes are almost same and don t change over the time. May be the point about the wrong relationship between the property of the equation and my condition are right or there are just simple problems which I can t find right now. But, one thing is for sure, this is wrong about the logic and theory which I build for this method and project. 4 Conclusion and Future plan FINALLY, time for the conclusion. This project was such a bittersweet chocolate for me. The equations are evil and no one really can help me. But, this is MY project and MY topic so I did what can I do for the best. Definitely this is not easy project for general. I didn t realize that type in the LaTex form is such a hard job. It feels really great if I did something which I think can t do that especially for writing the code for the Mathematica shows the lessons of the P210. I can do the programming without any previous experience because I have the documentations and GOOGLE! And it really feels sad and bad for the last part which I really want to solve. However, I think it is just a small step which I will take closer to the my goal like space and time steps are building each layers of the numerical solution. I will probably research about this related topic for my honors thesis for 4th year if I am still doing Biophysics in next year which is the my future plan. I will master the Nernst-Planck equation and let all the world know how EASY that equation should be. For that purpose, I won t make this project public. This is between you and me, Jess! Thank you to teach me such a great strength and knowledge! 14

15 References [1] S.B. Malvadkar, M.D. Kostin, Solutions of the Nernst-Planck Equations for Ionic Diffusion for Conditions near Equilibrium, The Journal of Chemical Physics, Oct. 1972, vol 57, is. 8, pp [2] Philip Nelson,Biological Physics, pp [3] One of the my Math 316 notes on the finite difference method. [4] pitman/courses/mth438/na/ node15.htmlsection [5] [6] lambe/nsc/nsc.html. 15

Please bring the task to your first physics lesson and hand it to the teacher.

Please bring the task to your first physics lesson and hand it to the teacher. Pre-enrolment task for 2014 entry Physics Why do I need to complete a pre-enrolment task? This bridging pack serves a number of purposes. It gives you practice in some of the important skills you will

More information

Math101, Sections 2 and 3, Spring 2008 Review Sheet for Exam #2:

Math101, Sections 2 and 3, Spring 2008 Review Sheet for Exam #2: Math101, Sections 2 and 3, Spring 2008 Review Sheet for Exam #2: 03 17 08 3 All about lines 3.1 The Rectangular Coordinate System Know how to plot points in the rectangular coordinate system. Know the

More information

Solving Quadratic & Higher Degree Equations

Solving Quadratic & Higher Degree Equations Chapter 7 Solving Quadratic & Higher Degree Equations Sec 1. Zero Product Property Back in the third grade students were taught when they multiplied a number by zero, the product would be zero. In algebra,

More information

Section 4.6 Negative Exponents

Section 4.6 Negative Exponents Section 4.6 Negative Exponents INTRODUCTION In order to understand negative exponents the main topic of this section we need to make sure we understand the meaning of the reciprocal of a number. Reciprocals

More information

Lesson 6-1: Relations and Functions

Lesson 6-1: Relations and Functions I ll bet you think numbers are pretty boring, don t you? I ll bet you think numbers have no life. For instance, numbers don t have relationships do they? And if you had no relationships, life would be

More information

Math 111, Introduction to the Calculus, Fall 2011 Midterm I Practice Exam 1 Solutions

Math 111, Introduction to the Calculus, Fall 2011 Midterm I Practice Exam 1 Solutions Math 111, Introduction to the Calculus, Fall 2011 Midterm I Practice Exam 1 Solutions For each question, there is a model solution (showing you the level of detail I expect on the exam) and then below

More information

Descriptive Statistics (And a little bit on rounding and significant digits)

Descriptive Statistics (And a little bit on rounding and significant digits) Descriptive Statistics (And a little bit on rounding and significant digits) Now that we know what our data look like, we d like to be able to describe it numerically. In other words, how can we represent

More information

ACCESS TO SCIENCE, ENGINEERING AND AGRICULTURE: MATHEMATICS 1 MATH00030 SEMESTER / Lines and Their Equations

ACCESS TO SCIENCE, ENGINEERING AND AGRICULTURE: MATHEMATICS 1 MATH00030 SEMESTER / Lines and Their Equations ACCESS TO SCIENCE, ENGINEERING AND AGRICULTURE: MATHEMATICS 1 MATH00030 SEMESTER 1 017/018 DR. ANTHONY BROWN. Lines and Their Equations.1. Slope of a Line and its y-intercept. In Euclidean geometry (where

More information

T 1. The value function v(x) is the expected net gain when using the optimal stopping time starting at state x:

T 1. The value function v(x) is the expected net gain when using the optimal stopping time starting at state x: 108 OPTIMAL STOPPING TIME 4.4. Cost functions. The cost function g(x) gives the price you must pay to continue from state x. If T is your stopping time then X T is your stopping state and f(x T ) is your

More information

Solving Quadratic & Higher Degree Equations

Solving Quadratic & Higher Degree Equations Chapter 9 Solving Quadratic & Higher Degree Equations Sec 1. Zero Product Property Back in the third grade students were taught when they multiplied a number by zero, the product would be zero. In algebra,

More information

C if U can. Algebra. Name

C if U can. Algebra. Name C if U can Algebra Name.. How will this booklet help you to move from a D to a C grade? The topic of algebra is split into six units substitution, expressions, factorising, equations, trial and improvement

More information

Solving Quadratic & Higher Degree Equations

Solving Quadratic & Higher Degree Equations Chapter 9 Solving Quadratic & Higher Degree Equations Sec 1. Zero Product Property Back in the third grade students were taught when they multiplied a number by zero, the product would be zero. In algebra,

More information

DIFFERENTIAL EQUATIONS

DIFFERENTIAL EQUATIONS DIFFERENTIAL EQUATIONS Basic Concepts Paul Dawkins Table of Contents Preface... Basic Concepts... 1 Introduction... 1 Definitions... Direction Fields... 8 Final Thoughts...19 007 Paul Dawkins i http://tutorial.math.lamar.edu/terms.aspx

More information

Solve Systems of Equations Algebraically

Solve Systems of Equations Algebraically Part 1: Introduction Solve Systems of Equations Algebraically Develop Skills and Strategies CCSS 8.EE.C.8b You know that solutions to systems of linear equations can be shown in graphs. Now you will learn

More information

5.5. The Substitution Rule

5.5. The Substitution Rule INTEGRALS 5 INTEGRALS 5.5 The Substitution Rule In this section, we will learn: To substitute a new variable in place of an existing expression in a function, making integration easier. INTRODUCTION Due

More information

PHY 123 Lab 1 - Error and Uncertainty and the Simple Pendulum

PHY 123 Lab 1 - Error and Uncertainty and the Simple Pendulum To print higher-resolution math symbols, click the Hi-Res Fonts for Printing button on the jsmath control panel. PHY 13 Lab 1 - Error and Uncertainty and the Simple Pendulum Important: You need to print

More information

Introduction to Algebra: The First Week

Introduction to Algebra: The First Week Introduction to Algebra: The First Week Background: According to the thermostat on the wall, the temperature in the classroom right now is 72 degrees Fahrenheit. I want to write to my friend in Europe,

More information

Solving with Absolute Value

Solving with Absolute Value Solving with Absolute Value Who knew two little lines could cause so much trouble? Ask someone to solve the equation 3x 2 = 7 and they ll say No problem! Add just two little lines, and ask them to solve

More information

Partial Fractions. June 27, In this section, we will learn to integrate another class of functions: the rational functions.

Partial Fractions. June 27, In this section, we will learn to integrate another class of functions: the rational functions. Partial Fractions June 7, 04 In this section, we will learn to integrate another class of functions: the rational functions. Definition. A rational function is a fraction of two polynomials. For example,

More information

Chapter 1 Review of Equations and Inequalities

Chapter 1 Review of Equations and Inequalities Chapter 1 Review of Equations and Inequalities Part I Review of Basic Equations Recall that an equation is an expression with an equal sign in the middle. Also recall that, if a question asks you to solve

More information

Answers for Calculus Review (Extrema and Concavity)

Answers for Calculus Review (Extrema and Concavity) Answers for Calculus Review 4.1-4.4 (Extrema and Concavity) 1. A critical number is a value of the independent variable (a/k/a x) in the domain of the function at which the derivative is zero or undefined.

More information

MATH 408N PRACTICE MIDTERM 1

MATH 408N PRACTICE MIDTERM 1 02/0/202 Bormashenko MATH 408N PRACTICE MIDTERM Show your work for all the problems. Good luck! () (a) [5 pts] Solve for x if 2 x+ = 4 x Name: TA session: Writing everything as a power of 2, 2 x+ = (2

More information

Chapter 5 Simplifying Formulas and Solving Equations

Chapter 5 Simplifying Formulas and Solving Equations Chapter 5 Simplifying Formulas and Solving Equations Look at the geometry formula for Perimeter of a rectangle P = L W L W. Can this formula be written in a simpler way? If it is true, that we can simplify

More information

Solution to Proof Questions from September 1st

Solution to Proof Questions from September 1st Solution to Proof Questions from September 1st Olena Bormashenko September 4, 2011 What is a proof? A proof is an airtight logical argument that proves a certain statement in general. In a sense, it s

More information

of 8 28/11/ :25

of 8 28/11/ :25 Paul's Online Math Notes Home Content Chapter/Section Downloads Misc Links Site Help Contact Me Differential Equations (Notes) / First Order DE`s / Modeling with First Order DE's [Notes] Differential Equations

More information

How to Use Calculus Like a Physicist

How to Use Calculus Like a Physicist How to Use Calculus Like a Physicist Physics A300 Fall 2004 The purpose of these notes is to make contact between the abstract descriptions you may have seen in your calculus classes and the applications

More information

Vectors Part 1: Two Dimensions

Vectors Part 1: Two Dimensions Vectors Part 1: Two Dimensions Last modified: 20/02/2018 Links Scalars Vectors Definition Notation Polar Form Compass Directions Basic Vector Maths Multiply a Vector by a Scalar Unit Vectors Example Vectors

More information

O.K. But what if the chicken didn t have access to a teleporter.

O.K. But what if the chicken didn t have access to a teleporter. The intermediate value theorem, and performing algebra on its. This is a dual topic lecture. : The Intermediate value theorem First we should remember what it means to be a continuous function: A function

More information

Lesson 21 Not So Dramatic Quadratics

Lesson 21 Not So Dramatic Quadratics STUDENT MANUAL ALGEBRA II / LESSON 21 Lesson 21 Not So Dramatic Quadratics Quadratic equations are probably one of the most popular types of equations that you ll see in algebra. A quadratic equation has

More information

Algebra & Trig Review

Algebra & Trig Review Algebra & Trig Review 1 Algebra & Trig Review This review was originally written for my Calculus I class, but it should be accessible to anyone needing a review in some basic algebra and trig topics. The

More information

Experiment 1: The Same or Not The Same?

Experiment 1: The Same or Not The Same? Experiment 1: The Same or Not The Same? Learning Goals After you finish this lab, you will be able to: 1. Use Logger Pro to collect data and calculate statistics (mean and standard deviation). 2. Explain

More information

EQ: How do I convert between standard form and scientific notation?

EQ: How do I convert between standard form and scientific notation? EQ: How do I convert between standard form and scientific notation? HW: Practice Sheet Bellwork: Simplify each expression 1. (5x 3 ) 4 2. 5(x 3 ) 4 3. 5(x 3 ) 4 20x 8 Simplify and leave in standard form

More information

Determinants in detail

Determinants in detail Determinants in detail Kyle Miller September 27, 2016 The book s introduction to the determinant det A of an n n square matrix A is to say there is a quantity which determines exactly when A is invertible,

More information

Math 31 Lesson Plan. Day 2: Sets; Binary Operations. Elizabeth Gillaspy. September 23, 2011

Math 31 Lesson Plan. Day 2: Sets; Binary Operations. Elizabeth Gillaspy. September 23, 2011 Math 31 Lesson Plan Day 2: Sets; Binary Operations Elizabeth Gillaspy September 23, 2011 Supplies needed: 30 worksheets. Scratch paper? Sign in sheet Goals for myself: Tell them what you re going to tell

More information

Math 5a Reading Assignments for Sections

Math 5a Reading Assignments for Sections Math 5a Reading Assignments for Sections 4.1 4.5 Due Dates for Reading Assignments Note: There will be a very short online reading quiz (WebWork) on each reading assignment due one hour before class on

More information

A Level Maths summer preparation work

A Level Maths summer preparation work A Level Maths summer preparation work Welcome to A Level Maths! We hope you are looking forward to two years of challenging and rewarding learning. You must make sure that you are prepared to study A Level

More information

Lecture 5. 1 Review (Pairwise Independence and Derandomization)

Lecture 5. 1 Review (Pairwise Independence and Derandomization) 6.842 Randomness and Computation September 20, 2017 Lecture 5 Lecturer: Ronitt Rubinfeld Scribe: Tom Kolokotrones 1 Review (Pairwise Independence and Derandomization) As we discussed last time, we can

More information

STARTING WITH CONFIDENCE

STARTING WITH CONFIDENCE STARTING WITH CONFIDENCE A- Level Maths at Budmouth Name: This booklet has been designed to help you to bridge the gap between GCSE Maths and AS Maths. Good mathematics is not about how many answers you

More information

Quadratic Equations Part I

Quadratic Equations Part I Quadratic Equations Part I Before proceeding with this section we should note that the topic of solving quadratic equations will be covered in two sections. This is done for the benefit of those viewing

More information

MATH The Chain Rule Fall 2016 A vector function of a vector variable is a function F: R n R m. In practice, if x 1, x n is the input,

MATH The Chain Rule Fall 2016 A vector function of a vector variable is a function F: R n R m. In practice, if x 1, x n is the input, MATH 20550 The Chain Rule Fall 2016 A vector function of a vector variable is a function F: R n R m. In practice, if x 1, x n is the input, F(x 1,, x n ) F 1 (x 1,, x n ),, F m (x 1,, x n ) where each

More information

Polynomials; Add/Subtract

Polynomials; Add/Subtract Chapter 7 Polynomials Polynomials; Add/Subtract Polynomials sounds tough enough. But, if you look at it close enough you ll notice that students have worked with polynomial expressions such as 6x 2 + 5x

More information

Infinite Limits. By Tuesday J. Johnson

Infinite Limits. By Tuesday J. Johnson Infinite Limits By Tuesday J. Johnson Suggested Review Topics Algebra skills reviews suggested: Evaluating functions Graphing functions Working with inequalities Working with absolute values Trigonometric

More information

CS103 Handout 22 Fall 2012 November 30, 2012 Problem Set 9

CS103 Handout 22 Fall 2012 November 30, 2012 Problem Set 9 CS103 Handout 22 Fall 2012 November 30, 2012 Problem Set 9 In this final problem set of the quarter, you will explore the limits of what can be computed efficiently. What problems do we believe are computationally

More information

CHAPTER 7: TECHNIQUES OF INTEGRATION

CHAPTER 7: TECHNIQUES OF INTEGRATION CHAPTER 7: TECHNIQUES OF INTEGRATION DAVID GLICKENSTEIN. Introduction This semester we will be looking deep into the recesses of calculus. Some of the main topics will be: Integration: we will learn how

More information

Section 1.1. Chapter 1. Quadratics. Parabolas. Example. Example. ( ) = ax 2 + bx + c -2-1

Section 1.1. Chapter 1. Quadratics. Parabolas. Example. Example. ( ) = ax 2 + bx + c -2-1 Chapter 1 Quadratic Functions and Factoring Section 1.1 Graph Quadratic Functions in Standard Form Quadratics The polynomial form of a quadratic function is: f x The graph of a quadratic function is a

More information

base 2 4 The EXPONENT tells you how many times to write the base as a factor. Evaluate the following expressions in standard notation.

base 2 4 The EXPONENT tells you how many times to write the base as a factor. Evaluate the following expressions in standard notation. EXPONENTIALS Exponential is a number written with an exponent. The rules for exponents make computing with very large or very small numbers easier. Students will come across exponentials in geometric sequences

More information

Lesson Plan by: Stephanie Miller

Lesson Plan by: Stephanie Miller Lesson: Pythagorean Theorem and Distance Formula Length: 45 minutes Grade: Geometry Academic Standards: MA.G.1.1 2000 Find the lengths and midpoints of line segments in one- or two-dimensional coordinate

More information

Algebra. Here are a couple of warnings to my students who may be here to get a copy of what happened on a day that you missed.

Algebra. Here are a couple of warnings to my students who may be here to get a copy of what happened on a day that you missed. This document was written and copyrighted by Paul Dawkins. Use of this document and its online version is governed by the Terms and Conditions of Use located at. The online version of this document is

More information

Business Statistics. Lecture 9: Simple Regression

Business Statistics. Lecture 9: Simple Regression Business Statistics Lecture 9: Simple Regression 1 On to Model Building! Up to now, class was about descriptive and inferential statistics Numerical and graphical summaries of data Confidence intervals

More information

One sided tests. An example of a two sided alternative is what we ve been using for our two sample tests:

One sided tests. An example of a two sided alternative is what we ve been using for our two sample tests: One sided tests So far all of our tests have been two sided. While this may be a bit easier to understand, this is often not the best way to do a hypothesis test. One simple thing that we can do to get

More information

Exploring Graphs of Polynomial Functions

Exploring Graphs of Polynomial Functions Name Period Exploring Graphs of Polynomial Functions Instructions: You will be responsible for completing this packet by the end of the period. You will have to read instructions for this activity. Please

More information

One-to-one functions and onto functions

One-to-one functions and onto functions MA 3362 Lecture 7 - One-to-one and Onto Wednesday, October 22, 2008. Objectives: Formalize definitions of one-to-one and onto One-to-one functions and onto functions At the level of set theory, there are

More information

MITOCW watch?v=7q32wnm4dew

MITOCW watch?v=7q32wnm4dew MITOCW watch?v=7q32wnm4dew BARTON ZWIEBACH: Hydrogen atom is the beginning of our analysis. It still won't solve differential equations, but we will now two particles, a proton, whose coordinates are going

More information

Math 31 Lesson Plan. Day 16: Review; Start Section 8. Elizabeth Gillaspy. October 18, Supplies needed: homework. Colored chalk. Quizzes!

Math 31 Lesson Plan. Day 16: Review; Start Section 8. Elizabeth Gillaspy. October 18, Supplies needed: homework. Colored chalk. Quizzes! Math 31 Lesson Plan Day 16: Review; Start Section 8 Elizabeth Gillaspy October 18, 2011 Supplies needed: homework Colored chalk Quizzes! Goals for students: Students will: improve their understanding of

More information

Number Systems III MA1S1. Tristan McLoughlin. December 4, 2013

Number Systems III MA1S1. Tristan McLoughlin. December 4, 2013 Number Systems III MA1S1 Tristan McLoughlin December 4, 2013 http://en.wikipedia.org/wiki/binary numeral system http://accu.org/index.php/articles/1558 http://www.binaryconvert.com http://en.wikipedia.org/wiki/ascii

More information

Where Is Newton Taking Us? And How Fast?

Where Is Newton Taking Us? And How Fast? Name: Where Is Newton Taking Us? And How Fast? In this activity, you ll use a computer applet to investigate patterns in the way the approximations of Newton s Methods settle down to a solution of the

More information

Study skills for mathematicians

Study skills for mathematicians PART I Study skills for mathematicians CHAPTER 1 Sets and functions Everything starts somewhere, although many physicists disagree. Terry Pratchett, Hogfather, 1996 To think like a mathematician requires

More information

MA 1128: Lecture 08 03/02/2018. Linear Equations from Graphs And Linear Inequalities

MA 1128: Lecture 08 03/02/2018. Linear Equations from Graphs And Linear Inequalities MA 1128: Lecture 08 03/02/2018 Linear Equations from Graphs And Linear Inequalities Linear Equations from Graphs Given a line, we would like to be able to come up with an equation for it. I ll go over

More information

2, or x 5, 3 x 0, x 2

2, or x 5, 3 x 0, x 2 Pre-AP Algebra 2 Lesson 2 End Behavior and Polynomial Inequalities Objectives: Students will be able to: use a number line model to sketch polynomials that have repeated roots. use a number line model

More information

TA guide Physics 208 Spring 2008 Lab 3 (E-1): Electrostatics

TA guide Physics 208 Spring 2008 Lab 3 (E-1): Electrostatics Name TA guide Physics 208 Spring 2008 Lab 3 (E-1): Electrostatics Section OBJECTIVE: To understand the electroscope as an example of forces between charges, and to use it as a measuring device to explore

More information

CO6: Introduction to Computational Neuroscience

CO6: Introduction to Computational Neuroscience CO6: Introduction to Computational Neuroscience Lecturer: J Lussange Ecole Normale Supérieure 29 rue d Ulm e-mail: johann.lussange@ens.fr Solutions to the 2nd exercise sheet If you have any questions regarding

More information

Getting Started with Communications Engineering

Getting Started with Communications Engineering 1 Linear algebra is the algebra of linear equations: the term linear being used in the same sense as in linear functions, such as: which is the equation of a straight line. y ax c (0.1) Of course, if we

More information

5.1 Simplifying Rational Expressions

5.1 Simplifying Rational Expressions 5. Simplifying Rational Expressions Now that we have mastered the process of factoring, in this chapter, we will have to use a great deal of the factoring concepts that we just learned. We begin with the

More information

Differential Equations

Differential Equations This document was written and copyrighted by Paul Dawkins. Use of this document and its online version is governed by the Terms and Conditions of Use located at. The online version of this document is

More information

ACCESS TO SCIENCE, ENGINEERING AND AGRICULTURE: MATHEMATICS 1 MATH00030 SEMESTER / Functions

ACCESS TO SCIENCE, ENGINEERING AND AGRICULTURE: MATHEMATICS 1 MATH00030 SEMESTER / Functions ACCESS TO SCIENCE, ENGINEERING AND AGRICULTURE: MATHEMATICS 1 MATH00030 SEMESTER 1 2017/2018 DR. ANTHONY BROWN 4. Functions 4.1. What is a Function: Domain, Codomain and Rule. In the course so far, we

More information

18.085, PROBLEM SET 1 SOLUTIONS

18.085, PROBLEM SET 1 SOLUTIONS 18.085, PROBLEM SET 1 SOLUTIONS Question 1. (20 pts.) Using odd values of n, the error is on the order of machine precision, about 10 16, for smaller values of n. We expect this because we are doing finite

More information

Administrivia. Lab notebooks from Lab 0 are due at 2 PM in Hebb 42 at the start of Lab 1.

Administrivia. Lab notebooks from Lab 0 are due at 2 PM in Hebb 42 at the start of Lab 1. Administrivia Lab notebooks from Lab 0 are due at 2 PM in Hebb 42 at the start of Lab 1. You can trade lab partners for the next lab, by mutual agreement of all the parties concerned. No unilateral abandonments,

More information

Mathematical induction

Mathematical induction Mathematical induction Notes and Examples These notes contain subsections on Proof Proof by induction Types of proof by induction Proof You have probably already met the idea of proof in your study of

More information

Partial Differential Equations Summary

Partial Differential Equations Summary Partial Differential Equations Summary 1. The heat equation Many physical processes are governed by partial differential equations. temperature of a rod. In this chapter, we will examine exactly that.

More information

Student Questionnaire (s) Main Survey

Student Questionnaire (s) Main Survey School: Class: Student: Identification Label IEA Third International Mathematics and Science Study - Repeat Student Questionnaire (s) Main Survey TIMSS Study Center Boston College Chestnut Hill, MA 02467

More information

Generating Function Notes , Fall 2005, Prof. Peter Shor

Generating Function Notes , Fall 2005, Prof. Peter Shor Counting Change Generating Function Notes 80, Fall 00, Prof Peter Shor In this lecture, I m going to talk about generating functions We ve already seen an example of generating functions Recall when we

More information

Introduction. So, why did I even bother to write this?

Introduction. So, why did I even bother to write this? Introduction This review was originally written for my Calculus I class, but it should be accessible to anyone needing a review in some basic algebra and trig topics. The review contains the occasional

More information

Lesson Objectives: we will learn:

Lesson Objectives: we will learn: Lesson Objectives: Setting the Stage: Lesson 66 Improper Integrals HL Math - Santowski we will learn: How to solve definite integrals where the interval is infinite and where the function has an infinite

More information

MATH 250 TOPIC 13 INTEGRATION. 13B. Constant, Sum, and Difference Rules

MATH 250 TOPIC 13 INTEGRATION. 13B. Constant, Sum, and Difference Rules Math 5 Integration Topic 3 Page MATH 5 TOPIC 3 INTEGRATION 3A. Integration of Common Functions Practice Problems 3B. Constant, Sum, and Difference Rules Practice Problems 3C. Substitution Practice Problems

More information

MITOCW ocw f99-lec30_300k

MITOCW ocw f99-lec30_300k MITOCW ocw-18.06-f99-lec30_300k OK, this is the lecture on linear transformations. Actually, linear algebra courses used to begin with this lecture, so you could say I'm beginning this course again by

More information

LECTURE 15: SIMPLE LINEAR REGRESSION I

LECTURE 15: SIMPLE LINEAR REGRESSION I David Youngberg BSAD 20 Montgomery College LECTURE 5: SIMPLE LINEAR REGRESSION I I. From Correlation to Regression a. Recall last class when we discussed two basic types of correlation (positive and negative).

More information

CSE370 HW3 Solutions (Winter 2010)

CSE370 HW3 Solutions (Winter 2010) CSE370 HW3 Solutions (Winter 2010) 1. CL2e, 4.9 We are asked to implement the function f(a,,c,,e) = A + C + + + CE using the smallest possible multiplexer. We can t use any extra gates or the complement

More information

Lesson 29: Newton's Law of Universal Gravitation

Lesson 29: Newton's Law of Universal Gravitation Lesson 29: Newton's Law of Universal Gravitation Let's say we start with the classic apple on the head version of Newton's work. Newton started with the idea that since the Earth is pulling on the apple,

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

MI 4 Mathematical Induction Name. Mathematical Induction

MI 4 Mathematical Induction Name. Mathematical Induction Mathematical Induction It turns out that the most efficient solution to the Towers of Hanoi problem with n disks takes n 1 moves. If this isn t the formula you determined, make sure to check your data

More information

AP Physics Ch 6 Day 4

AP Physics Ch 6 Day 4 Textbook Reference: Goal/Objectives: Sections 6.3 (Collisions) - Understand how momentum and kinetic energy relate to the 3 types of collisions: elastic, inelastic, and perfectly inelastic - Use projectile

More information

ED 357/358 - FIELD EXPERIENCE - LD & EI LESSON DESIGN & DELIVERY LESSON PLAN #4

ED 357/358 - FIELD EXPERIENCE - LD & EI LESSON DESIGN & DELIVERY LESSON PLAN #4 ED 357/358 - FIELD EXPERIENCE - LD & EI LESSON DESIGN & DELIVERY LESSON PLAN #4 Your Name: Sarah Lidgard School: Bentheim Elementary School Lesson: Telling Time Length: approx. 50 minutes Cooperating Teacher:

More information

Vectors. A vector is usually denoted in bold, like vector a, or sometimes it is denoted a, or many other deviations exist in various text books.

Vectors. A vector is usually denoted in bold, like vector a, or sometimes it is denoted a, or many other deviations exist in various text books. Vectors A Vector has Two properties Magnitude and Direction. That s a weirder concept than you think. A Vector does not necessarily start at a given point, but can float about, but still be the SAME vector.

More information

2 Analogies between addition and multiplication

2 Analogies between addition and multiplication Problem Analysis The problem Start out with 99% water. Some of the water evaporates, end up with 98% water. How much of the water evaporates? Guesses Solution: Guesses: Not %. 2%. 5%. Not 00%. 3%..0%..5%.

More information

Big Bang, Black Holes, No Math

Big Bang, Black Holes, No Math ASTR/PHYS 109 Dr. David Toback Lectures 8 & 9 1 Prep For Today (is now due) L9 Reading: BBBHNM Unit 2 (already due) Pre-Lecture Reading Questions (PLRQ) Unit 2 Revision (if desired), Stage 2: Was due today

More information

Edexcel AS and A Level Mathematics Year 1/AS - Pure Mathematics

Edexcel AS and A Level Mathematics Year 1/AS - Pure Mathematics Year Maths A Level Year - Tet Book Purchase In order to study A Level Maths students are epected to purchase from the school, at a reduced cost, the following tetbooks that will be used throughout their

More information

Unit 1 Linear Models. Answer. Question. Model. Question. Answer. 3 Types of Models. Model: A simplified version of reality

Unit 1 Linear Models. Answer. Question. Model. Question. Answer. 3 Types of Models. Model: A simplified version of reality Model: A simplified version of reality Model Example: Free Fall is a model of falling objects that ignores air resistance. Free Fall assumes that only gravity affects falling motion. Real fall in an atmosphere

More information

Markov Chain Monte Carlo The Metropolis-Hastings Algorithm

Markov Chain Monte Carlo The Metropolis-Hastings Algorithm Markov Chain Monte Carlo The Metropolis-Hastings Algorithm Anthony Trubiano April 11th, 2018 1 Introduction Markov Chain Monte Carlo (MCMC) methods are a class of algorithms for sampling from a probability

More information

Introduction - Motivation. Many phenomena (physical, chemical, biological, etc.) are model by differential equations. f f(x + h) f(x) (x) = lim

Introduction - Motivation. Many phenomena (physical, chemical, biological, etc.) are model by differential equations. f f(x + h) f(x) (x) = lim Introduction - Motivation Many phenomena (physical, chemical, biological, etc.) are model by differential equations. Recall the definition of the derivative of f(x) f f(x + h) f(x) (x) = lim. h 0 h Its

More information

In this unit we will study exponents, mathematical operations on polynomials, and factoring.

In this unit we will study exponents, mathematical operations on polynomials, and factoring. GRADE 0 MATH CLASS NOTES UNIT E ALGEBRA In this unit we will study eponents, mathematical operations on polynomials, and factoring. Much of this will be an etension of your studies from Math 0F. This unit

More information

Math Lab 8: Electric Fields Integrating Continuous Charge Distributions II Due noon Thu. Feb. 1 in class

Math Lab 8: Electric Fields Integrating Continuous Charge Distributions II Due noon Thu. Feb. 1 in class Matter & Motion Winter 2017 18 Name: Math Lab 8: Electric Fields Integrating Continuous Charge Distributions II Due noon Thu. Feb. 1 in class Goals: 1. Learn to use Mathematica to plot functions and to

More information

Calculus II. Calculus II tends to be a very difficult course for many students. There are many reasons for this.

Calculus II. Calculus II tends to be a very difficult course for many students. There are many reasons for this. Preface Here are my online notes for my Calculus II course that I teach here at Lamar University. Despite the fact that these are my class notes they should be accessible to anyone wanting to learn Calculus

More information

The Derivative of a Function

The Derivative of a Function The Derivative of a Function James K Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University March 1, 2017 Outline A Basic Evolutionary Model The Next Generation

More information

ACCESS TO SCIENCE, ENGINEERING AND AGRICULTURE: MATHEMATICS 1 MATH00030 SEMESTER / Quadratic Equations

ACCESS TO SCIENCE, ENGINEERING AND AGRICULTURE: MATHEMATICS 1 MATH00030 SEMESTER / Quadratic Equations ACCESS TO SCIENCE, ENGINEERING AND AGRICULTURE: MATHEMATICS 1 MATH00030 SEMESTER 1 018/019 DR ANTHONY BROWN 31 Graphs of Quadratic Functions 3 Quadratic Equations In Chapter we looked at straight lines,

More information

Worksheet for Exploration 24.1: Flux and Gauss's Law

Worksheet for Exploration 24.1: Flux and Gauss's Law Worksheet for Exploration 24.1: Flux and Gauss's Law In this Exploration, we will calculate the flux, Φ, through three Gaussian surfaces: green, red and blue (position is given in meters and electric field

More information

Sums of Squares (FNS 195-S) Fall 2014

Sums of Squares (FNS 195-S) Fall 2014 Sums of Squares (FNS 195-S) Fall 014 Record of What We Did Drew Armstrong Vectors When we tried to apply Cartesian coordinates in 3 dimensions we ran into some difficulty tryiing to describe lines and

More information

Sequence convergence, the weak T-axioms, and first countability

Sequence convergence, the weak T-axioms, and first countability Sequence convergence, the weak T-axioms, and first countability 1 Motivation Up to now we have been mentioning the notion of sequence convergence without actually defining it. So in this section we will

More information

General Technical Remarks on PDE s and Boundary Conditions Kurt Bryan MA 436

General Technical Remarks on PDE s and Boundary Conditions Kurt Bryan MA 436 General Technical Remarks on PDE s and Boundary Conditions Kurt Bryan MA 436 1 Introduction You may have noticed that when we analyzed the heat equation on a bar of length 1 and I talked about the equation

More information

MATH 31B: BONUS PROBLEMS

MATH 31B: BONUS PROBLEMS MATH 31B: BONUS PROBLEMS IAN COLEY LAST UPDATED: JUNE 8, 2017 7.1: 28, 38, 45. 1. Homework 1 7.2: 31, 33, 40. 7.3: 44, 52, 61, 71. Also, compute the derivative of x xx. 2. Homework 2 First, let me say

More information

EM Algorithm & High Dimensional Data

EM Algorithm & High Dimensional Data EM Algorithm & High Dimensional Data Nuno Vasconcelos (Ken Kreutz-Delgado) UCSD Gaussian EM Algorithm For the Gaussian mixture model, we have Expectation Step (E-Step): Maximization Step (M-Step): 2 EM

More information