8 Pages

Lab3

Course: MATH 216, Fall 2011
School: Michigan
Rating:
 
 
 
 
 

Word Count: 1751

Document Preview

3: Lab Higher-Order Numerical Methods Goals In this lab you will compare the order of accuracy of various numerical methods; that is, you will test-drive some new solvers. You will implement an improved Eulers method and a fourth-order Runge-Kutta method, in addition to your Eulers method program from Lab 2. The example from Lab 2 of an RC circuit with AC voltage provides a case-study for comparing these three...

Register Now

Unformatted Document Excerpt

Coursehero >> Michigan >> Michigan >> MATH 216

Course Hero has millions of student submitted documents similar to the one
below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.

Course Hero has millions of student submitted documents similar to the one below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.
3: Lab Higher-Order Numerical Methods Goals In this lab you will compare the order of accuracy of various numerical methods; that is, you will test-drive some new solvers. You will implement an improved Eulers method and a fourth-order Runge-Kutta method, in addition to your Eulers method program from Lab 2. The example from Lab 2 of an RC circuit with AC voltage provides a case-study for comparing these three methods. Prelab assignment Before arriving in the lab, answer the following questions. You will need your answers in lab to work the problems, and your recitation instructor may check that you have brought them. These problems are to be handed in as part of your lab report. Consider the initial-value problem 1 Q (t) = Q(t) + 5 , 2 Q(0) = 2 . (1) 1. Solve this problem for Q(t) by noting that the dierential equation is separable. 2. Table 1 below shows the resulting values from N steps of some numerical method to approximate Q(t) over the interval 0 t 2. Copy the table and ll in the exact values using your solution. 3. Calculate the errors and write them in Table 1. Note that error means |approximate exact|. Also copy Table 2 and ll in the errors (only for t = 2). 4. The step size h is obtained by dividing the interval over which the solution is computed into N equal parts. Calculate the step sizes h for the three rows in Table 2. 5. Plug in the values from Table 2 into the following equations, E1 = Ch 1 and E2 = Ch 2 and solve them for the exponent . Hint: taking logarithms makes the equations easier to solve. 6. Repeat the computations of question 5 using the values h2 , h3 and E2 , E3 instead of h1 , h2 and E1 , E2 . The value of you obtain should be close to that obtained in question 5; you are repeating the computation as a check on your previous calculation. 1 7. Based on your answers to questions 5 and 6 which numerical method do you think was used? (Refer to sections 2.5 and 2.6 of the textbook.) t Approximate Q 1.0 2.0 Exact Q N = 10 Error 5.143393877 7.051672121 N = 60 1.0 2.0 5.147640987 7.056826501 N = 360 1.0 2.0 5.147751596 7.056960678 Table 1: Approximate Solution to the initial-value problem (1) N 10 60 360 h Error h1 = h2 = h3 = E1 = E2 = E3 = Table 2: Errors for t = 2 2 In the lab In this lab we will see how higher-order numerical methods can be implemented in Matlab as easily as Eulers method was implemented in Lab 2. We are still concerned with the general initial-value problem dy = f (t, y ) , y (a) = y0 . (2) dt In Lab 2 you implemented a solver for this initial-value problem using Eulers method. In this lab you will implement solvers using the improved Euler method and the fourth-order Runge-Kutta method. To begin Lab 3, launch Matlab and make sure your working directory is the subdirectory of ~/Desktop/IFS in which you saved your les from Lab 2. You should see the names of the .m les you saved in Lab 2 in the window pane to the left of the Command Window. Entering in a Matlab program for the improved Euler method Create a new .m le in Matlab called impEULER.m that will contain your solver implementing the improved Euler method. Enter into impEULER.m the following commands: clear t % Clears old time steps and clear yI % yI values from previous runs a=0; % Initial time b=1; % Final time N=10; % Number of time steps y0=1; % Initial value y(a) h=(b-a)/N; % Time step t(1)=a; yI(1)=y0; for n=1:N % For loop, sets next t,yI values k1=f(t(n),yI(n)); % Slope 1 u(n)=yI(n)+h*k1; % Predictor t(n+1)=t(n)+h; k2=f(t(n+1),u(n)); % Slope 2 yI(n+1)=yI(n)+h*(k1+k2)/2; % Corrector end plot(t,yI) title([Improved Euler Method using N=,num2str(N)... , steps, by MYNAME]) Note: the ellipsis (...) in the last line tells Matlab to continue the command onto the next line of text. If included in the middle of a line of text, it will cause an error. In this program, substitute your own name for MYNAME. Notice that impEULER.m refers to the same le f.m that EULER.m does, so you can solve the same dierential equation with both EULER.m and impEULER.m. While the vector of approximate solutions in EULER.m 3 was called y, the vector of approximate solutions in impEULER.m is called yI, so you can distinguish and compare the output of the two numerical methods. Entering in a Matlab program for the fourth-order Runga-Kutta method Next we implement a Runge Kutta method. Create a new .m le called RK.m and enter in the following commands: clear t clear yRK a=0; b=1; N=10; y0=1; h=(b-a)/N; t(1)=a; yRK(1)=y0; for n=1:N % Define the slopes k k1=f(t(n),yRK(n)); % Slope 1 k2=f(t(n)+h/2,yRK(n)+h*k1/2); % Slope 2 k3=f(t(n)+h/2,yRK(n)+h*k2/2); % Slope 3 k4=f(t(n)+h,yRK(n)+h*k3); % Slope 4 k=(k1+2*k2+2*k3+k4)/6; % Weighted average of slopes t(n+1)=t(n)+h; % Update time yRK(n+1)=yRK(n)+h*k; % Update y end plot(t,yRK) title([Runge Kutta Method using N=,num2str(N)... , steps, by MYNAME]) Once again, you should substitute your own name for MYNAME. This program again refers to f.m and saves the approximate solution in a vector called yRK which may be compared with y produced by EULER.m and yI produced by impEULER.m. A Matlab program visualizing for the errors Finally, to compare the errors of the three methods you have implemented in Matlab, it will be helpful to graph all three errors on the same axes. You will now write a Matlab program called ErrorPlot.m to do this. The errors will be plotted on a logarithmic scale, where the logarithm of the error is plotted versus time. A semilog plot such as this is particularly helpful when you wish to investigate a function, or several functions, that take on values spanning many orders of magnitude. After creating a .m le called ErrorPlot.m, enter the following commands: 4 EULER % Runs Euler impEULER % Runs impEULER RK % Runs RK yexact=yE(t); % Compute exact solution errE=abs(yexact-y); % Euler method error errI=abs(yexact-yI); % Improved Euler error errRK=abs(yexact-yRK); % Runge Kutta error semilogy(t,errE,:,t,errI,-.,t,errRK,-) legend(Euler,impEULER,RK) xlabel(t) % Labels x axis ylabel(Error) % Labels y axis title([Errors using N=,num2str(N), steps, by MYNAME]) Substitute your name for MYNAME so your plots will be labelled with your name. Make sure at this time that all of your .m les are saved. Lab problems In this lab, you will numerically approximate solutions to the following two initial-value problems: dy1 = y1 , y1 (0) = 1 , (3) dt dy2 = 5y2 + .00585 sin(120t) , y2 (0) = 0 . (4) dt 1. Run EULER.m, impEULER.m and RK.m for N = 10, to solve the initial-value problem (3) on the interval 0 t 1. (This is in preparation for Problem 2 to check that all three programs are running correctly; you do not have to print out the results.) To do this problem, make sure that for all three programs, the beginning includes the lines a=0; b=1; N=10; y0=1; You must also make sure that the line of your program f.m which denes the value of f (that is, the right-hand side f (t, y ) of the dierential equation for the initial-value problem (3)) is f=y; and the line in the le yE.m which denes the exact solution to the initial-value problem (3) is yE=exp(t); 5 2. Run the program ErrorPlot.m to compare the errors created by using each method in approximating the solution to the initial-value problem (3). Print the graph of the error using 10 steps. Enter the errors at the indicated times in the appropriate column of Table 3 below. 3. Repeat Problem 2 using N = 100 and N = 1000 steps. Print these graphs of the error and use the data to complete Table 3. Note: you will need to modify the line N=10; in all three programs EULER.m, impEULER.m, and RK.m. 4. Conclude for each method that the error is proportional to h for some constant exponent . The constant is called the order of the method. Based on your calculations, what is the order for each method? (Recall the prelab calculations.) 5. Repeat Problems 2 and 3 for the second initial-value problem, (4). Solve on the interval 0 t 0.1, using N = 100, N = 200, N = 400, and N = 800. To do this, you must change your le f.m to implement the right-hand side of the dierential equation for the initial-value problem (4) using the line f=-5*y+.00585*sin(120*pi*t); and also the le yE.m should contain the exact solution of the initial-value problem (4): omg=120*pi; A=117*omg*.04/(20000*(1+(omg*.2)^2)); B=117*.2/(20000*(1+(omg*.2)^2)); yE=A*(exp(-t/.2)-cos(omg*t))+B*sin(omg*t); Note that modied in this way, these les are the same as used in the second part of Lab 2; you may have saved them as f2.m and yE2.m. Finally, the beginning of EULER.m, impEULER.m, and RK.m must be modied to incorporate the new stopping time and initial condition, as well as the number of steps: a=0; b=.1; N=100; y0=0; % or 200, or 400, or 800 Plot the error as before, and include your data in Table 4 on the last page. Print the graphs of the error. Are these errors consistent with your conclusions from Problem 4? Why or why not? 6. When using the Runge-Kutta method to solve the initial-value problem (3) with N = 1000, what happened in your graph of the error for small values of t? About how large was this error? How large is the roundo error in Matlab? (To nd out, type eps in the Matlab Command window.) Explain the possible role of roundo error in that part of the graph. 6 7. Which method is the most ecient for solving initial-value problems for dierential equations? Explain clearly how you interpreted the word ecient in answering the previous question (for example, some methods may be easier to program, and other methods may be able to achieve more accuracy using less computer time). Time t 10 Number of Steps, N 100 Eulers Method 1000 0.5 0.86 1.0 Improved Euler Method 0.5 0.86 1.0 Runge-Kutta Method 0.5 0.86 1.0 Table 3: Error from solving the initial-value problem (3) Note: your lab report for Lab 3 should consist of your solutions to the prelab problems, your solutions to lab problems 17 (including any graphs printed out), and a brief, original, conclusions paragraph summarizing what you have learned. 7 Time t 100 Number of Steps, N 200 Eulers Method 400 0.05 0.086 0.1 Improved Euler Method 0.05 0.086 0.1 Runge-Kutta Method 0.05 0.086 0.1 Table 4: Error from solving the initial-value problem (4) 8
Find millions of documents on Course Hero - Study Guides, Lecture Notes, Reference Materials, Practice Exams and more. Course Hero has millions of course specific materials providing students with the best way to expand their education.

Below is a small sample set of documents:

Michigan - MATH - 216
Name:Section/Time of lecture:Professor/GSI:MATH 216 WINTER 2009MIDTERM ITo get full score you need to carefully explain what you did. No calculators allowed.1Problem Points Score1102283224262TOTAL882Problem 1.a-4pt Verify that the fun
Michigan - MATH - 216
MATH 216 FIRST MIDTERM EXAMOctober 12, 2009Please write your name:Section:The test contains 7 problems worth 100 points total. To get the full credit youhave to show your work.Problems1234567Points15121515151612ScoreTypeset by AMS-T
Michigan - MATH - 216
MATH 216 FIRST MIDTERM EXAMFebruary 15, 2010Please write your name:Section:The test contains 8 problems worth 100 points total. To get the full credit youhave to show your work.ProblemPoints1122123144125126147128Score12Total100T
Michigan - PHYS - 140
Michigan - PHYS - 140
Physics 140, Fall 2010Second Midterm ExamPhysics Department, University of MichiganNovember 4, 2010FORM 1Please print your name: SAUL LOU SHENYour INSTRUCTOR:_INSTRUCTIONS AND INFORMATION1. Fill in YOUR NAME, INSTRUCTOR and the EXAM FORM NUMBER on
Michigan - PHYS - 140
Physics 140, Winter 2010Second Midterm Exam: March 11, 2010Physics Department, University of MichiganFORM 1Please print your name: _Your DISCUSSION SECTION or INSTRUCTOR:_INSTRUCTIONS AND INFORMATION1.Fill in YOUR NAME, SECTION NUMBER and EXAM FOR
Michigan - PHYS - 140
Physics 140, Fall 2010Second Midterm ExamPhysics Department, University of MichiganNovember 4, 2010FORM 1Please print your name: _Your INSTRUCTOR:_INSTRUCTIONS AND INFORMATION1. Fill in YOUR NAME, INSTRUCTOR and the EXAM FORM NUMBER on the scantro
Michigan - PHYS - 140
Physics 140 Winter 2011lecture #13 21 Feb#13 21Midterm evaluations on ctoolsTodays topic: torqueReading Quiz: Which of the following does not directlyrelated to the torque acting on an object?A. The magnitude of the forceB. The lever armC. The an
Michigan - ENGIN - 101
Engineering101Engineering101DataTypesBonusComic!BonusComic!QuoteoftheDayQuoteoftheDayJudgepeoplebytheirquestionsratherthanbytheiranswers.VoltaireTwoImportantHalvesofTwoImportantHalvesofComputerProgrammingExecutionControlSequence Selection
Mississippi State - PH - 2233
PHYSICS - III10:00 10:50 MWF, 350 Hilbun (Sec -1)Dipangkar DuttaOffice: 010 C Hilbun Hall,email: d.dutta@msstate.edu,Ph: 325-3105Office hours: 2:30 3:30 MWF, or by appointmentCourse website: on WebCT/Blackboard Learning Systems(http:/oncampus.msst
Mississippi State - PH - 2233
Recap of last lectureChapter 13,Periodic motionA restoring force which is directly proportional to the displacementfrom equilibrium will cause a periodic motion called SHM.Example a spring driven glider:Restoring force = Fx = -kx or ax = d2x/dt2 = -
Mississippi State - PH - 2233
Recap of last lectureChapter 13,Periodic motionSHM can be described as uniform circular motion projected on a planeThis gives x = A cos andax = -2xHence for the spring driven glider : = (k/m)and1kmf=T = 2frequency and period are independent2
Mississippi State - PH - 2233
Recap of last lectureChapter 13,Periodic motionA simple pendulums period is given byThe period of a physical pendulum isT = 2LgDamped oscillationsThe decrease in the amplitude due to dissipative forcesis called damping and these oscillations are
Mississippi State - PH - 2233
Recap of last lectureChapter 13,Periodic motionFor damped spring with a damping force of Fx = -bvxd2 xkb dx= xdt 2mm dtWith:solutionx = AeForced (driven)oscillator (b / 2 m )tA=cos( t + )we have&=kb2m 4m 2Fmax22(k md ) 2 + b2 d
Mississippi State - PH - 2233
Recap of last lectureWaves are transverse or longitudinal or a combinationIf the oscillations producing the wave is a SHMvelocity v = f where is the wavelengthWave function or amplitude of wave atAny arbitrary position x and time t is:y(x,t) = Acos(
Mississippi State - PH - 2233
Recap of last lectureThe wave equation for a periodic wave is: 2y 1 2y=222xv tThis relates the curvature of the wave to the transverse acceleration.The velocity of a wave in string is given byWhere F is the tension and is its linear mass density
Mississippi State - PH - 2233
Recap of last lectureInstantaneous power =Max Power = F 2A2F 2A2 sin 2 (kx t)Average power = Max powerIntensity = Power per unit areaW/m2I1/I2 = r22/r12Waves reflect at boundaries(changes in medium)If Particles at the boundary are:Fixed (feel a
Mississippi State - PH - 2233
Recap of last lectureSound waves:y(x,t) = Acos(kx-t) for wave traveling in the +x direction(same as any other wave).But can also be described in terms of pressure fluctuation.P = BkAsin(kx-t)Pmax = BkAPressure varies sinusoidally but has a /2 (90)
Mississippi State - PH - 2233
Recap of last lecturev=v fluid =restoring forceinertia resisting changeBvsolid =Yv gas = RTMIntensity = <Power>av/area = BkA2= B 2A2= P2max/B= (10dB)log(I/I0)where I0 = 1x10-12W/m2(I0 threshold for human hearing at 1000Hz)Applications suc
Mississippi State - PH - 2233
Recap of last lectureStanding waves in longitudinal waves (sound waves)open columnsf1 = v/2L, f2 = v/L, f3 = 3v/2Lhttp:/The_Gas_Tubeclosed columnsf1 = v/4L, f3 = 3v/4L, f5 = 5v/4LWave interferenceDestructive interference when the distance between
Mississippi State - PH - 2233
Recap of last lectureJust like other waves sound waves interfereWhen the frequency of two sound waves is the same:Destructive interference when the distance between the speaker is /2, 3/2, 5/2Constructive interference when the distance between the spe
Mississippi State - PH - 2233
Recap of last lectureDoppler Effectfront = (v vS)/fSbehind = (v + vS)/fSfL = (v +/- vL)fS/(v +/- vS)Electromagnetic waves occur overa wide range Where wavelength is large, frequency is small. The range extends from low energy and frequency(radio
Mississippi State - PH - 2233
Recap of last lectureElectromagnetic waves do not need a medium to propagateTime varying E and B fields produce EM waves such as E & B fieldsassociated with accelerating charged particles.They satisfy the wave equation and v = f, in vacuum v = c = 3x1
Mississippi State - PH - 2233
Recap of last lectureEM waves also satisfy the wave eqn. and the E & B fields vary sinusoidallyWhen propagation through a medium the velocity changes from c tov = c/n where n is called the refractive index = KKm where =K0and = Km0Recap of last lectur
Mississippi State - PH - 2233
Recap of Mondays lectureEM radiation have both particle like and wave like properties. TheQuantum description of EM radiation takes into account both typeof behavior.Laws of reflection i= rReflection can be specular anddiffuse. When studying reflect
Mississippi State - PH - 2233
Recap of last lectureFor light traveling from a to b where na > nb, as the angle ofincidence becomes more and more acute, the light ceases to betransmitted, only reflected. crit = sin-1(nb/na)Frustrated TIRTIRIn which of the followingsituations is
Mississippi State - PH - 2233
Recap of last lectureThe wavelength dependence of refraction is called dispersionna = c/va = 0/aThere are two states of linear polarization of lightCertain materials block EM waves polarized light in a particulardirectionIf the angle between the pol
Mississippi State - PH - 2233
Recap of last lectureLight can also be polarized by reflection. It is 100% polarized inthe direction parallel to the reflecting surface when the angle ofincidence = brewster angle = tan-1 (nb/na)Scattered light perpendicular to the direction of propag
Mississippi State - PH - 2233
Recap of last lectureparticlesdsin = m (maximas)dsin = (m+ ) (minimas)For small sin ~ tanor d.ymax /R = mor ymax = mR/dI = 0cE2p= I0 cos2/2wavesIn Youngs experiment, coherent light passing throughtwo slits (S1 and S2) produces a pattern of dark
Mississippi State - PH - 2233
Recap of last lectureFor small the maximas are at 2t = mn wheren = 0/nMaxima for 2t=(m+ ) m=0,1,2Minima for 2t = mPhase shift of /2An air wedge between two glass plates Just like the thin film, two waves reflect back from the air wedgein close pro
Mississippi State - PH - 2233
Recap of last lectureBright rings when net phase shift = 2t+ /2 =m or 2t = (m+ )dark rings when 2t = m m=0,1,2,Thin film coatings can make perfectreflectors or perfect absorbersDiffractionandFraunhofer DiffractionP will be a dark band ifasin = O
Mississippi State - PH - 2233
Recap of last lecturew1/a85% ofthe powerP will be a dark band ifasin = Orsin = m/a m =1, 2, For small sin ~ ~ tany = xm/a with m =1, 2, Intensity in a single-slit patternEp = E0sin(/2)/(/2) sin/2 I = I0 /2 2 = (2/)*[path difference] = (2/
Mississippi State - PH - 2233
Recap of last lecture sin/2 I =I0/2 2 = (2 / )asinThe first minima is at 1 = / 2 /( Two slit interference sin /2 I =I0 /2 d = 4adsin = m (maximas)dsin = (m+ ) (minimas)I = I0cos2/22 sin /2 I = I 0 cos 2 /2 = (2 /)2 = ( 2 /)2Diffra
Mississippi State - PH - 2233
Recap of last lectureRevisit 2 slit interference: actually diffraction pattern from eachslit interfere to produce the pattern seen which is a little differentfrom the idealized 2 slit pattern we saw in the last chapter.I I0 cos2 sin /2 22 /2 f = (
Mississippi State - PH - 2233
Recap of last lecture.When light has a wavelength l much smaller than objects that itinteracts with, we can treat light as composed of straight-line rays.This regime is called geometric optics.Reflections from a spherical mirrorsa + b = 2ftan a = h
Mississippi State - PH - 2233
Recap of last lectureSpherical reflecting surfaces can be concave orconvex. (concave is when the mirror is silveredon the outer surface while convex is the otherkind.)Under the paraxial approximation (smallangles or light almost parallel to the opti
Mississippi State - PH - 2233
Recap of last lecturena/s + nb/s = (nb-na)/Rm = y/y = -nas/nbsA pair of spherical surfaces can form concave orconvex lenses. Light refracting through thesespherical surfaces tend to converge in convex lensesand diverge in concave lenses.For thin le
Mississippi State - PH - 2233
Recap of last lectureHuman eye: most of the bending (refraction) due to the cornea which has asmall focal length.The lens is used to get additional variable focusing so that near and far objectscan be on focus at the retinaNormal eye near point = 25
Mississippi State - PH - 2233
Recap of last lectureMagnificationby a simplemagnifier'Mh/ fh/ NNfIf eye focuses at near p oint,achieve slightly greater power :MN1fN = near point , 25 cmMicroscope magnification = M1*M2 = s25/f1f2Telescope magnification = -f1/f2Microsc
Mississippi State - PH - 2233
Recap of last lecturePostulate of Classical relativity:Laws of mechanics (Newtons laws ) are invariant in all inertial reference framesCrisis in classical relative: In classical relativity the velocity of light would bedifferent in a frame moving with
Mississippi State - PH - 2233
Recap of last lectureConsequences of the postulates of special relativity:1. Speed of light is a constant2. Simultaneity of events is frame dependent3. Time intervals are frame dependent4. spatial intervals (length) is frame dependent5. Space-time i
Mississippi State - PH - 2233
Recap of last lectureConsequences of the postulates of special relativity:1. Time in moving frames is dilated t = t2. Length in moving frames is contracted l = l/3. = 1/(1-u2/c2)1/24. The complete Lorentz transforms are given by:t = (t - ux/c2)x= (
Mississippi State - PH - 2233
Recap of last lectureLooked at 4 phenomena which are problematic for classical physicsLine spectra seen for different elements when they are heated/energizedPhoto-electric effect (electrons emitted from metal when light withFrequency above a threshold
Mississippi State - PH - 2233
Recap of last lectureLooked at 4 phenomena which are problematic for classical physicsLine spectra and black body radiation spectrum can be explained interms of discrete energy levels in atoms where E1 E2 = hf;Ephoton = hfThe same particle like prope
Mississippi State - PH - 2233
Recap of last lectureEvidence for wave like behavior of particles:Diffraction and two slit interference patternsThese are a consequence of the uncertainty principleDpDx hParticles can be described by wave-functions y (x,y,z,t)Particle wave-functions
Mississippi State - PH - 2233
Recap of last lectureSolving the wave equation (Schrdinger Eq.) for the most simpleproblem a particle in a box (infinite potential well) shows thatthe particle can only occupy discrete energy levels. The wave fn.for each of these energy levels resembl
Mississippi State - CH - 1213
John W. MooreConrad L. StanitskiPeter C. Jurswww.cengage.com/chemistry/mooreChapter 12Fuels, Organic Chemicals andPolymersPetroleumPetroleum is a complex mixture of: alkanes cycloalkanes alkenes aromatic hydrocarbonsIts composition and color
Mississippi State - CH - 1213
Chapter 13Chemical Kinetics: Rates ofReactionsChemical KineticsThe study of speeds of reactions and the nanoscalepathways or rearrangements by which atoms andmolecules are transformed from reactants toproducts.Chemical kinetics is also called reac
Mississippi State - CH - 1213
Chapter 14Chemical EquilibriumCharacteristics of Chemical EquilibriumMany reactions fail to go to completion.[Reactants] stop decreasing, and[Products] stop increasing.The reaction reaches equilibrium.If there are more:products than reactants = pr
Mississippi State - CH - 1213
Chapter 15The Chemistry of Solutes andSolutionsSolubility & Intermolecular ForcesSolution = homogeneous mixture of substances.It consists of: solvent - component in the greatest amount. solute - all other components (may be >1).Solvent-solute inte
Mississippi State - CH - 1213
Chapter 16Acids and BasesArrhenius DefinitionArrhenius: any substance which ionizes in water toproduce: Protons is an Acid. Hydroxide ions is a Base.Better version of the Arrhenius definition:Acid: Hydronium ions (H3O+) in water are acidic.Base:
Mississippi State - CH - 1213
Chapter 17Additional Aqueous EquilibriaBuffer SolutionsBuffer = chemical system that resists changes in pH.ExampleAdd 0.010 mol of HCl or NaOH to:1 L SolutionInitialpHafter HClpure H2O7.002.0012.00[CH3COOH] = 0.5 M+ [CH3COONa] = 0.5 M4.74
Mississippi State - CH - 1213
Chapter 18Thermodynamics:Directionality of ChemicalReactionsReactant- & Product-Favored Processes Why are equilibria product- or reactant- favored? Why do some reactions occur spontaneously? Why do others require help (heat, spark)? Exothermic rea
Mississippi State - CH - 1213
Chapter 19Electrochemistry & itsApplicationsElectrochemistryElectrochemistry is the study and use of e- flow inchemical reactions.Redox reactions generate (and use) e Those e- can be harnessed (batteries). Corrosion is an electrochemical reaction.
Mississippi State - CH - 1213
Chapter 20Nuclear ChemistryThe Nature of RadioactivityHenri Becquerel (1896): U salts emitted rays that fog a photographic plate. U metal was a stronger emitter.Marie and Pierre Curie: Isolated Po and Ra that did the same. Marie Curie called the p
UCLA - MATH - 3C
UCSB - ECON - 134a
25.00%20.00%17.50%15.00%10.00%5.50%5.00%0.00%0.00%5.00%10.00%15.00%20.00%25.00%30.00%35.00%
UCSB - ECON - 134a
25.00%20.00%15.00%Correlation -1Correlation -0.5Correlation 010.00%Correlation 0.5Correlation 15.00%0.00%0.00%5.00%10.00%15.00%20.00%25.00%30.00%35.00%40.00%
UCSB - ECON - 134a
Useful FormulasQuadratic Formula 2 + + = 0, = 2 42Time Value of Money1) Present Value of a Single Cash Flow occurring T periods from now =1 + 2) Present Value of an Annuity, paying C, with T payments and discounted at r%1=11 + 3) Present Val
UCSB - ECON - 134a
Econ134a-Financial Management Finance is the Interaction of TIME, MONEYand UNCERTAINTYBusiness Organizations1. Sole Proprietorship2. Partnerships and Limited Partnerships3. CorporationsSole Proprietorship No Corporate Income Tax Unlimited Liabili
UCSB - ECON - 134a
Time Value of MoneyTime Value of Money Is Money received Today worth more or lessthan the same received in the Future? Usually MORE Why?Time Value of Money We could invest the money received today in ariskless asset and have more in the future. E