Ge108: Homework 3 Solution

Size: px
Start display at page:

Download "Ge108: Homework 3 Solution"

Transcription

1 Ge8: Homework 3 Solution Due: Wednesday, Oct. In class October 7, 5 General Comments In general, people are making some very beautiful plots in mathematica with all kinds of colors and properties. Keep it up! It makes your plots easier to read. Comment on your important results/plots, even when we forget to ask you to do so. Basically, this demonstrates to me that you ve briefly done the critical thinking about what your plot/result/calculation actually means. You should consider this as practice for figures/calculations that you ll make for papers and posters, which you will certainly write brief critical thoughts on. A sentence or two generally suffices, and it can state the obvious but try to take it to the next step. e.g. The plot of the motion of a pendulum looks like a sine wave for small initial displacements. This indicates that a pendulum acts like a simple harmonic oscillator if the oscillations are small. Presumably the fact that your plot is a sine wave is obvious, but its nice to show me you re making connections. Please label your axes!! Its easy to forget on these problem sets, but it really is a bad habit. I ve let it slide so far, but I m going to get pickier about it. Someday you ll look back at these plots and you ll want to be able to understand them, or at the very least recall how to label plots when its really critical that you do (like in your orals!!). It can be a bit of an organizational nightmare to get all the mathematica plots and your handwritten stuff pulled together in a manner that makes sense. Many of you are directing me to look at plots/comments which are attached at the back of your homework, which works wonderfully for me. Also most are doing a good job of labeling sections. This makes finding things much easier, and I really appreciate this. Keep it up! Part Derive the equation for the Pendulum Below is a graphic of how the pendulum system works. Using the force balance equation, mlẍ = Restoring Force + External Force (.) The L is on the LHS because x in an angle. The angular velocity, y, given by y= ẋ. Restoring force is the force that opposes the motion of the pendulum, in this case its the component of the gravitational force that

2 is antiparallel to the motion. This gives ml dy dt = mg sin(x) + F ext dy dt = g L sin(x) + F ext (.) In the case that x, then sin(x) x, which you get from the Taylor expansion. If F ext =, then eq.. reduces to dy dt = g L x (.3) This is the equation for the simple harmonic oscillator (SHO), since ẋ=y. The oscillator has a frequency, ω = g L. The general solution to the SHO equation is x(t) = A cos(ω t + ) y(t) = ω A sin(ω t + ) (.4) Using the initial conditions that x()= and y()=, you get the following set of equations x() =A cos( ) = (.5) y() =ω A sin( ) = (.6) You know that A and ω aren t, so this means that sin( )=, or that = and therefore A=. We re told that ω is actually π in this problem. Therefore final solution is x(t) = cos(πt) (.7) L X F ext y=dx/dt m mg Sin(x) mg Figure : The figure for part a. The relevant variables are labeled. Forces are in blue.

3 sol3_.nb Problem Set 4 WARNING: There is a long integration in this part 5 of this notebook, so don't evaluate this whole notebook at once. ü Part In[86]:= Clear@x, t, yd ü Analytical Solution This is the plot of the analytical solution that you just found for the SHO. I've plotted x(t) in red and the y(t) is in blue. In[86]:= x@t_d := Cos@p * td In[86]:= y@t_d := -p * Sin@p * td In[863]:= p = Plot@8x@tD, y@td<, 8t,, <, PlotStyle Ø 88AbsoluteThickness@D, Hue@D<, 8GrayLevel@.5D, AbsoluteThickness@D, Hue@.7D<<, Frame Ø True, FrameLabel Ø 8"", " & yhtl"<, RotateLabel Ø True D 3 & yhtl Out[863]= In[864]:= Clear@x, t, yd ü Numerical Solution This is the numerical result for the SHO. Here the x(t) is in black and y(t) is grey. In[45]:= sol = NDSolve@8x'@tD ã y@td, y '@td ã -p ^ * x@td, x@d ã., y@d ã <, 8x, y<, 8t,, <D Out[45]= 88x Ø InterpolatingFunction@88.,.<<, <>D, y Ø InterpolatingFunction@88.,.<<, <>D<<

4 sol3_.nb In[866]:= p = Plot@8x@tD ê. First@solD, y@td ê. First@solD<, 8t,, <, PlotStyle Ø 88AbsoluteThickness@D, Dashing@8.5,.3<D<, 8GrayLevel@.5D, AbsoluteThickness@D, Dashing@8.5,.3<D<<, Frame Ø True, FrameLabel Ø 8"", " & yhtl"<, RotateLabel Ø TrueD 3 & yhtl Out[866]= ü Comparing the Analytical and Numerical Solution: Here I've compared the two plots by plotting them on the same graph. As you can see they're exactly the same. In[867]:= Show@p, pd 3 & yhtl Out[867]= ü The Parametric Plot This is plot of the x vs. t, as you can see, its a closed ellipse

5 sol3_.nb 3 In[93]:= ParametricPlot@8Evaluate@x@tD ê. First@solDD, Evaluate@y@tDD ê. First@solD<, 8t,, 4<, PlotRange Ø All, Frame Ø True, FrameLabel Ø 8"", "yhtl"<, RotateLabel Ø TrueD 3 yhtl Out[93]= Here, I've just set the keyword AspectRatio-> so that I get a nice circle In[94]:= pp = ParametricPlot@8Evaluate@x@tD ê. First@solDD, Evaluate@y@tDD ê. First@solD<, 8t,, 4<, PlotRange Ø All, AspectRatio Ø, Frame Ø True, FrameLabel Ø 8"", "yhtl"<, RotateLabel Ø TrueD 3 yhtl Out[94]=

6 sol3_.nb 4 ü Part Here I've found the numerical solution for the full pendulum equation. The wording of this part was a bit confusing, but Andy wanted you to compare the numerical solution of the full pendulum to the analytical solution for the SHO. In some sense there is no "analytical" solution to the the full pendulum equation. If you try using DSolve in Mathematica, you get a funky solution that involves "elliptical functions". Elliptical functions are basically defined to be the solution to the pendulum differential equation and other similar equations. Once you have your elliptical function, you figure out what inputs you want and look up the output on a table (or rather, have Mathematica do this). Basically there is no "closed form" solution to the full pendulum equation. Here I picked a value of 7/8p as the initial x-so this is a pretty large amplitude. As you can see, the solution doesn't look like the SHO. The black plot is x(t) and y(t) is in grey. In[334]:= sol3 = NDSolve@ 8x'@tD ã y@td, y'@td ã -p ^ * Sin@x@tDD, x@d ã 7 * p ê 8, y@d ã <, 8x, y<, 8t,, <D Out[334]= 88x Ø InterpolatingFunction@88.,.<<, <>D, y Ø InterpolatingFunction@88.,.<<, <>D<< In[868]:= p3 = Plot@8x@tD ê. First@sol3D, y@td ê. First@sol3D<, 8t,, <, PlotStyle Ø 88AbsoluteThickness@D<, 8GrayLevel@.5D, AbsoluteThickness@D<<, Frame Ø True, FrameLabel Ø 8"", " & yhtl"<, RotateLabel Ø TrueD 6 4 & yhtl Out[868]= This is the comparison of the analytical x & y (red and blue respectively) for the SHO to the numerical solution to the pendulum. As you can see, when x gets large, the shape of the curves can get strange. Also, the period of the oscillation is no longer p.

7 sol3_.nb 5 In[869]:= Show@p, p3d 6 4 & yhtl Out[869]= Here is the parametric plot, x vs. y. As you can see, it starts to look boxy, but its still a closed form In[95]:= pp = ParametricPlot@8Evaluate@x@tD ê. First@sol3DD, Evaluate@y@tDD ê. First@sol3D<, 8t,, <, PlotRange Ø All, AspectRatio Ø, Frame Ø True, FrameLabel Ø 8"", "yhtl"<, RotateLabel Ø TrueD 6 4 yhtl Out[95]=

8 sol3_.nb 6 ü Part 3a The pendulum can go over the top if it has total energy > Lmg, which is the potential energy that is has at the top of its motion. Any energy above this will go into kinetic energy, causing the pendulum to swing around. If it starts with x()=, then the minimum velocity is given by: ÅÅÅÅ mv = Lmg Øv= è!!!!!!!!! 4 Lg Since Ly=v, Then you can use the fact that è!!!!!!!!! g ê L = p and find that the minimum velocity is given by y()=p In[857]:= sol4 = NDSolve@8x'@tD ã y@td, y '@td ã -p ^ * Sin@x@tDD, x@d ã, y@d ã * p *.<, 8x, y<, 8t, -3 p, 3 p<d Out[857]= 88x Ø InterpolatingFunction@ , <<, <>D, y Ø InterpolatingFunction@ , <<, <>D<< Here I've picked a value for the initial velocity that will definitely get the pendulum around. If you pick exactly p, then you'll find that the pendulum gets stuck at the top, but eventually falls down due to fluctuations in the numerical answer. In[87]:= p4 = Plot@8x@tD ê. First@sol4D, y@td ê. First@sol4D<, 8t,, 3 * p<, PlotStyle Ø 88AbsoluteThickness@D<, 8GrayLevel@.5D, AbsoluteThickness@D<<, Frame Ø True, FrameLabel Ø 8"", " & yhtl"<, RotateLabel Ø TrueD 5 & yhtl Out[87]= Here is the parametric plot

9 sol3_.nb 7 In[96]:= pp = ParametricPlot@8Evaluate@x@tD ê. First@sol4DD, Evaluate@y@tDD ê. First@sol4D<, 8t, -p, p<, PlotRange Ø All, AspectRatio Ø, Frame Ø True, FrameLabel Ø 8"", "yhtl"<, RotateLabel Ø TrueD 6 5 yhtl 4 3 Out[96]=

10 sol3_.nb 8 ü Part 3b-Optional ü Code for part 3b ü Plot of constant energy contours for the pendulum The code for this plot is hidden above because its long. Ive just show the result below, but all the plots are similar to what you've already made with just slightly different initial conditions. You can download the notebook and look at the code for yourself if you're interested. The figure below is essentially a plot of constant energy contours. You initial energy will dictate where on the plot you fall and then you're constrained to move along the contour. The pendulum will never cross contours in the case of no damping and no forcing. You can see the two regimes- one where the pendulum is not going over the top and making closed ellipses. The other regime is where the pendulum goes over the top and continues oscillating in the x-y plane. Note that there are also two kinds of equilibirum points- One is in the center of the circles, which is a blue dot on the graph below, and corresponds to the pendulum at rest at the bottom. The other equilibrium points are between the circles and are marked by red dots and corresponds to the pendulum at rest, but at the top of the arc, balanced over the pin. The blue equilibrium point is stable, meaning if the system recieves a small perturbation away from this point, it stays nearby. The red equilibrium points are unstable, since a small perturbation will result in large motions away from the equilibrium point- also, if damping is present, then the pendulum will eventually end up oscillating around the stable equilibrium point. In[464]:= a = Graphics@8Hue@.65D, AbsolutePointSize@7D, Point@8, <D, Hue@D, AbsolutePointSize@7D, Point@8-p, <D, Hue@D, AbsolutePointSize@7D, Point@8p, <D<D; In[97]:= Show@pp, pp, pp, pp3, pp4, pp5, pp6, pp7, pp8, pp9, ad yhtl Out[97]=

11 sol3_.nb 9 ü Part 4a This is the numerical result for the damped, forced harmonic oscillator. In[883]:= g =.5; c =.; w = p *.5; In[886]:= sol4a = NDSolve@8x'@tD ã y@td, y '@td ã -p ^ * x@td - g * y@td + c * Cos@w * td, x@d ã, y@d ã <, 8x, y<, 8t,, 5 * p<d Out[886]= 88x Ø InterpolatingFunction@88., <<, <>D, y Ø InterpolatingFunction@88., <<, <>D<< In class we learned that the amplitude of the residual solution is given by In[877]:= a@wa_, wb_, Amp_, g_d := Amp ÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅ ÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅ ÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅÅ è!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Hwa^ - wb^l^ + 4 * Hg ê L^ * wb^ So the amplitude of steady state oscillation in this case is analytically given as: In[878]:= a@p, w, c, gd Out[878]=.3434 Below is the plot of the numerical solution and you can see after all the transients have died away that the amplitude is indeed.3. In[887]:= p4a = Plot@8x@tD ê. First@sol4aD, a@p, w, c, gd, -a@p, w, c, gd<, 8t,, * p<, PlotStyle Ø 88AbsoluteThickness@D<, 8RGBColor@,, D<, 8RGBColor@,, D<<, PlotRange Ø 8-.,.<, Frame Ø True, FrameLabel Ø 8"", ""<, RotateLabel Ø TrueD Out[887]=

12 sol3_.nb Here is for a case above the natural frequency In[888]:= g =.5; c =.; w = p *.5; In[89]:= sol4b = NDSolve@8x'@tD ã y@td, y '@td ã -p ^ * x@td - g * y@td + c * Cos@w * td, x@d ã, y@d ã <, 8x, y<, 8t,, 5 * p<d; The amplitude from the analytical solution: In[65]:= a@p, w, c, gd Out[65]=.6988 In[893]:= p4b = Plot@8x@tD ê. First@sol4bD, a@p, w, c, gd, -a@p, w, c, gd<, 8t, * p, 5 * p<, PlotStyle Ø 88AbsoluteThickness@D<, 8RGBColor@,, D<, 8RGBColor@,, D<<, PlotRange Ø 8-.6,.6<, Frame Ø True, FrameLabel Ø 8"", ""<, RotateLabel Ø TrueD; And for good measure, lets look at what happens when you get really close to the resonant frequency. In[95]:= g =.5; c =.; w3 = p * ; In[897]:= sol4c = NDSolve@8x'@tD ã y@td, y '@td ã -p ^ * x@td - g * y@td + c * Cos@w3 * td, x@d ã, y@d ã <, 8x, y<, 8t,, * p<d; In[898]:= a@p, w3, c, gd Out[898]=.6366

13 sol3_.nb In[9]:= p4c = Plot@8x@tD ê. First@sol4cD, a@p, w3, c, gd, -a@p, w3, c, gd<, 8t, * p, 5 * p<, PlotStyle Ø 88AbsoluteThickness@D<, 8RGBColor@,, D<, 8RGBColor@,, D<<, PlotRange Ø 8-, <, Frame Ø True, FrameLabel Ø 8"", ""<, RotateLabel Ø TrueD; ü Part 4b (Optional) Here is the x-y plot for the damped, forced oscillator. Specifically, this is for the last case shown above. As you can see it sprirals towards a single solution, but it never quite a closed ellipse. In[99]:= pp4 = ParametricPlot@8Evaluate@x@tD ê. First@sol4cDD, Evaluate@y@tDD ê. First@sol4cD<, 8t,, 5 * p<, PlotRange Ø All, AspectRatio Ø, Frame Ø True, FrameLabel Ø 8"", "yhtl"<, RotateLabel Ø TrueD yhtl Out[99]= Here I've created an array of values t which satisfy the equation wt=np, where n=,,4 etc.

14 sol3_.nb In[65]:= s = Table@n * p ê w3, 8n,,, <D; This is x & y evaluated at those times: In[66]:= x4b = x@sd ê. First@sol4cD; In[67]:= y4b = y@sd ê. First@sol4cD; The plot shows that the points approac a single solution. They aren't exactly piled up on each other because the "transient" is an exponential, and always contributes some. In[9]:= ListPlot@Transpose@8x4b, y4b<d, Prolog Ø AbsolutePointSize@5D, Frame Ø True, FrameLabel Ø 8"xHT=npêwL", "yht=npêwl"<, RotateLabel Ø TrueD.99 yht=npêwl Out[9]= xht=npêwl ü Part 5a In this section, I've replaced x by sin(x). I'm using the same parameters shown below. I found that I got chaotic behavior at C=, so instead I've used c=5., to show that you do get nice behaviour for a small enough forcing frequency. In[9]:= g =.5; c = 5.; w4 =.5; sol5b = NDSolve@8x'@tD ã y@td, y '@td ã -p ^ * Sin@x@tDD - g * y@td + c * Cos@w4 * td, x@d ã, y@d ã <, 8x, y<, 8t,, 3 * p<, MaxSteps Ø D Out[698]= 88x Ø InterpolatingFunction@88., <<, <>D, y Ø InterpolatingFunction@88., <<, <>D<<

15 sol3_.nb 3 In[95]:= p5c = Plot@8x@tD ê. First@sol5bD<, 8t, * p, * p<, PlotStyle Ø 88AbsoluteThickness@D, RGBColor@,, D<, 8RGBColor@,, D<, 8RGBColor@,, D<<, Frame Ø True, FrameLabel Ø 8"", ""<, RotateLabel Ø TrueD Out[95]= Here we're examining the chaotic behavior. I set c= as Andy suggested, and I integrated for a really long time so make the chaotic behavior more obvious. WARNING: Notice I had to bump up the MaxSteps to,, and made the integration really long. I recommend upping your step sizes gradually so you can figure out how many stepsizes your computer can handle before crashing. In[945]:= g =.5; c =.; w4 =.5; In[969]:= sol5c = NDSolve@8x'@tD ã y@td, y '@td ã -p ^ * Sin@x@tDD - g * y@td + c * Cos@w4 * td, x@d ã, y@d ã <, 8x, y<, 8t,, * p<, MaxSteps Ø D Out[969]= 88x Ø InterpolatingFunction@88., 345.9<<, <>D, y Ø InterpolatingFunction@88., 345.9<<, <>D<<

16 sol3_.nb 4 In[986]:= p5c = Plot@8x@tD ê. First@sol5cD<, 8t, * p, * p<, PlotStyle Ø 88AbsoluteThickness@D, RGBColor@,, D<, 8RGBColor@,, D<, 8RGBColor@,, D<<, Frame Ø True, FrameLabel Ø 8"", ""<, RotateLabel Ø TrueD; As you can see, the amplitude of the oscillation is regular, but x(t) wanders in an unpredictable fashion. In fact, if you start with slightly different initial conditions, you find that you get a completely different plot. In[975]:= g =.5; c =.; w4 =.5; In[978]:= sol5d = NDSolve@ 8x'@tD ã y@td, y'@td ã -p ^ * Sin@x@tDD - g * y@td + c * Cos@w4 * td, x@d ã, y@d ã.<, 8x, y<, 8t,, 3 * p<, Method Ø ExplicitRungeKutta, MaxSteps Ø D Out[978]= 88x Ø InterpolatingFunction@88., <<, <>D, y Ø InterpolatingFunction@88., <<, <>D<<

17 sol3_.nb 5 In[987]:= p5d = Plot@8x@tD ê. First@sol5dD<, 8t, * p, * p<, PlotStyle Ø 88AbsoluteThickness@D, RGBColor@,, D<, 8RGBColor@,, D<, 8RGBColor@,, D<<, Frame Ø True, FrameLabel Ø 8"", ""<, RotateLabel Ø TrueD; In[988]:= Show@p5c, p5dd; ü Part 5b (Optional) The parametric makes this wandering more obvious. Below I've plotted the x vs. y for the case just above. The kinks are real and not a numerical effect.

18 sol3_.nb 6 In[989]:= pp5a = ParametricPlot@8Evaluate@x@tD ê. First@sol5cDD, Evaluate@y@tDD ê. First@sol5cD<, 8t,, * p<, PlotRange Ø All, AspectRatio Ø, Frame Ø True, FrameLabel Ø 8"", "yhtl"<, RotateLabel Ø TrueD 5 5 yhtl Out[989]= 5 5 In[97]:= s = Table@n * p ê w4, 8n,, 5, <D; In[97]:= s@@5dd Out[97]= This is x & y evaluated at those times-note I've put this into modulus p using Mod: In[97]:= x5b = Mod@x@sD, pd ê. First@sol5cD; In[973]:= y5b = Mod@y@sD, pd ê. First@sol5cD; The plot shows that the points don't approach a single value, although they do appear to have some structure to them. This isn't exactly the plot that was shown on the second website, but its of the same flavor. I may not have been able to integrate to have enough points or my initial conditions may be the issue.

19 sol3_.nb 7 In[974]:= ListPlot@Transpose@8x5b, y5b<d, Prolog Ø AbsolutePointSize@D, Frame Ø True, FrameLabel Ø 8"xHT=npêwL", "yht=npêwl"<, RotateLabel Ø TrueD 3.5 yht=npêwl xht=npêwl Out[974]=

Solitons in the Korteweg-de Vries Equation (KdV Equation)

Solitons in the Korteweg-de Vries Equation (KdV Equation) Solitons in the Korteweg-de Vries Equation (KdV Equation) In[15]:= Clear@"Global`*"D ü Introduction The Korteweg-de Vries Equation (KdV equation) describes the theory of water waves in shallow channels,

More information

Solitons in the Korteweg-de Vries Equation (KdV Equation)

Solitons in the Korteweg-de Vries Equation (KdV Equation) Solitons in the Korteweg-de Vries Equation (KdV Equation) ü Introduction The Korteweg-de Vries Equation (KdV equation) describes the theory of water waves in shallow channels, such as a canal. It is a

More information

Plotting Commands x, -p, p<d

Plotting Commands x, -p, p<d Plotting Commands In[]:= In[2]:= Clear@"Global`*"D Plot@8Sin@xD, Cos@xD

More information

Numerical Solution of Plane Irrotational Flow

Numerical Solution of Plane Irrotational Flow Numerical Solution of Plane Irrotational Flow APPH 400 Physics of Fluids Columbia University Solve Laplace's equation for the streamfunction, y[x,y], for two relatively simple examples. Since Mathematica

More information

Cyber-Physical Systems Feedback Control

Cyber-Physical Systems Feedback Control Cyber-Physical Systems Feedback Control ICEN 553/453 Fall 2018 Prof. Dola Saha 1 Control System in Action Honeywell Thermostat, 1953 Chrysler cruise control, 1958 Feedback Systems: An Introduction for

More information

Answers: Mathematica Lab 6

Answers: Mathematica Lab 6 Answers: Mathematica Lab 6 Problem : River Meanders In[]:= a = 5 a = Sin@aD b = Cos@aD Out[]= 5 Out[2]= Out[3]= In[4]:= 5 8-5 8 4 J + 5 N x@q_d := a + Cos@qD x2@q_d := 3 a + Cos@qD x3@q_d := 5 a + Cos@qD

More information

Hoboken Public Schools. Algebra II Honors Curriculum

Hoboken Public Schools. Algebra II Honors Curriculum Hoboken Public Schools Algebra II Honors Curriculum Algebra Two Honors HOBOKEN PUBLIC SCHOOLS Course Description Algebra II Honors continues to build students understanding of the concepts that provide

More information

AltRobot.nb 1. Alternate Robot

AltRobot.nb 1. Alternate Robot AltRobot.nb Alternate Robot 2008 November 5 printed 2008 November 6 30 In which I formulate Hamilton's equations for a simple three link industrial robot with a payload, imposing holonomic constraints

More information

Support Vector Machines

Support Vector Machines Support Vector Machines Linearly Separable Data SVM: Simple Linear Separator hyperplane Which Simple Linear Separator? Classifier Margin Objective #1: Maximize Margin MARGIN MARGIN How s this look? MARGIN

More information

The Free State Foundation's TENTH ANNUAL TELECOM POLICY CONFERENCE

The Free State Foundation's TENTH ANNUAL TELECOM POLICY CONFERENCE The Free State Foundation's TENTH ANNUAL TELECOM POLICY CONFERENCE Connecting All of America: Advancing the Gigabit and 5G Future March 27, 2018 National Press Club Washington, DC 2 Keynote Address MODERATOR:

More information

Hoboken Public Schools. College Algebra Curriculum

Hoboken Public Schools. College Algebra Curriculum Hoboken Public Schools College Algebra Curriculum College Algebra HOBOKEN PUBLIC SCHOOLS Course Description College Algebra reflects the New Jersey learning standards at the high school level and is designed

More information

Amendments to Florida Rules of Appellate Procedure

Amendments to Florida Rules of Appellate Procedure The following is a real-time transcript taken as closed captioning during the oral argument proceedings, and as such, may contain errors. This service is provided solely for the purpose of assisting those

More information

Hoboken Public Schools. AP Statistics Curriculum

Hoboken Public Schools. AP Statistics Curriculum Hoboken Public Schools AP Statistics Curriculum AP Statistics HOBOKEN PUBLIC SCHOOLS Course Description AP Statistics is the high school equivalent of a one semester, introductory college statistics course.

More information

Hoboken Public Schools. AP Calculus Curriculum

Hoboken Public Schools. AP Calculus Curriculum Hoboken Public Schools AP Calculus Curriculum AP Calculus HOBOKEN PUBLIC SCHOOLS Course Description An Advanced Placement (AP) course in calculus consists of a full high school academic year of work that

More information

The 2012 GOP Primary: Unmasking the Vote Manipulation

The 2012 GOP Primary: Unmasking the Vote Manipulation The 212 GOP Primary: Unmasking the Vote Manipulation Upon reviewing the Greenville County Precinct election vote data from the 212, a disturbing pattern arose: Ron averaged 24% in precincts where less

More information

1. The augmented matrix for this system is " " " # (remember, I can't draw the V Ç V ß #V V Ä V ß $V V Ä V

1. The augmented matrix for this system is    # (remember, I can't draw the V Ç V ß #V V Ä V ß $V V Ä V MATH 339, Fall 2017 Homework 1 Solutions Bear in mind that the row-reduction process is not a unique determined creature. Different people might choose to row reduce a matrix in slightly different ways.

More information

FM Legacy Converter User Guide

FM Legacy Converter User Guide FM Legacy Converter User Guide Version 1.0 Table of Contents v Ways to Convert Ø Drag and Drop Supported file types Types of content that are converted Types of content that are not converted Converting

More information

I have looked for, but have not found any trial briefs for reference that. answer: do you list the traffic laws you plan to use at trial in the trial

I have looked for, but have not found any trial briefs for reference that. answer: do you list the traffic laws you plan to use at trial in the trial Trial Brief Help Hi firm, I'm working on my very first ever pre-trial brief which is due tomorrow (got the case very last minute) and I'm needing a bit of advice. It's an auto accident case. I represent

More information

James V. Crosby, Jr. v. Johnny Bolden

James V. Crosby, Jr. v. Johnny Bolden The following is a real-time transcript taken as closed captioning during the oral argument proceedings, and as such, may contain errors. This service is provided solely for the purpose of assisting those

More information

Thinkwell s Homeschool Microeconomics Course Lesson Plan: 31 weeks

Thinkwell s Homeschool Microeconomics Course Lesson Plan: 31 weeks Thinkwell s Homeschool Microeconomics Course Lesson Plan: 31 weeks Welcome to Thinkwell s Homeschool Microeconomics! We re thrilled that you ve decided to make us part of your homeschool curriculum. This

More information

Chapter 8: Recursion

Chapter 8: Recursion Chapter 8: Recursion Presentation slides for Java Software Solutions for AP* Computer Science 3rd Edition by John Lewis, William Loftus, and Cara Cocking Java Software Solutions is published by Addison-Wesley

More information

! = ( tapping time ).

! = ( tapping time ). AP Statistics Name: Per: Date: 3. Least- Squares Regression p164 168 Ø What is the general form of a regression equation? What is the difference between y and ŷ? Example: Tapping on cans Don t you hate

More information

AMA President Dr Michael Gannon with Luke Grant Radio 2GB Afternoons Friday 15 July 2016

AMA President Dr Michael Gannon with Luke Grant Radio 2GB Afternoons Friday 15 July 2016 Australian Medical Association Limited ABN 37 008 426 793 42 Macquarie Street, Barton ACT 2600: PO Box 6090, Kingston ACT 2604 Telephone: (02) 6270 5400 Facsimile (02) 6270 5499 Website : http://w ww.ama.com.au/

More information

Congressional Representation for Minorities Grades 9-12

Congressional Representation for Minorities Grades 9-12 Congressional Representation for Minorities Grades 9-12 Introduction This lesson asks students to look at a map of minority population distribution and another map of Congressional districts for their

More information

IN THE SUPERIOR COURT OF THE STATE OF ARIZONA

IN THE SUPERIOR COURT OF THE STATE OF ARIZONA IN THE SUPERIOR COURT OF THE STATE OF ARIZONA IN AND FOR THE COUNTY OF YAVAPAI 0 PRESCOTT SPORTSMANS CLUB, by and) through Board of Directors, ) ) Plaintiff, ) ) vs. ) ) MARK SMITH; TIM MASON; WILLIAM

More information

Josh Spaulding EZ-OnlineMoney.com/blog/

Josh Spaulding EZ-OnlineMoney.com/blog/ Josh Spaulding EZ-OnlineMoney.com/blog/ This is a FREE report offered through http://www.mmonicheexposed.com/ If you have purchased this report or obtained it through any other means, the transaction was

More information

EXAMINATION 3 VERSION B "Wage Structure, Mobility, and Discrimination" April 19, 2018

EXAMINATION 3 VERSION B Wage Structure, Mobility, and Discrimination April 19, 2018 William M. Boal Signature: Printed name: EXAMINATION 3 VERSION B "Wage Structure, Mobility, and Discrimination" April 19, 2018 INSTRUCTIONS: This exam is closed-book, closed-notes. Simple calculators are

More information

11 Green Bag 2d 51. Green Bag Autumn, Article. HOW TO READ A LEGAL OPINION A Guide for New Law Students. Orin S. Kerr a1

11 Green Bag 2d 51. Green Bag Autumn, Article. HOW TO READ A LEGAL OPINION A Guide for New Law Students. Orin S. Kerr a1 11 Green Bag 2d 51 Green Bag Autumn, 2007 Article HOW TO READ A LEGAL OPINION A Guide for New Law Students Orin S. Kerr a1 Copyright 2007 by The Green Bag, Inc.; Orin S. Kerr This essay is designed to

More information

Data manipulation in the Mexican Election? by Jorge A. López, Ph.D.

Data manipulation in the Mexican Election? by Jorge A. López, Ph.D. Data manipulation in the Mexican Election? by Jorge A. López, Ph.D. Many of us took advantage of the latest technology and followed last Sunday s elections in Mexico through a novel method: web postings

More information

Data and Models for Alaskan Migration

Data and Models for Alaskan Migration [THIS FILE INCLUDES SOME EDITS AND CONSOLIDATION - EDDIEH 12042018] Thank you for attending this talk about Alaska migration data and models. I ll first give some background and overview info, about what

More information

PubPol Values, Ethics, and Public Policy, Fall 2009

PubPol Values, Ethics, and Public Policy, Fall 2009 University of Michigan Deep Blue deepblue.lib.umich.edu 2010-03 PubPol 580 - Values, Ethics, and Public Policy, Fall 2009 Chamberlin, John Chamberlin, J. (2010, March 29). Values, Ethics, and Public Policy.

More information

English as a Second Language Podcast ESL Podcast Legal Problems

English as a Second Language Podcast   ESL Podcast Legal Problems GLOSSARY to be arrested to be taken to jail, usually by the police, for breaking the law * The police arrested two women for robbing a bank. to be charged to be blamed or held responsible for committing

More information

>> THE NEXT CASE ON THE DOCKET IS GARRETT VERSUS STATE OF FLORIDA. >> WHENEVER YOU'RE READY. >> MAY IT PLEASE THE COURT, MY NAME IS MEGAN LONG WITH

>> THE NEXT CASE ON THE DOCKET IS GARRETT VERSUS STATE OF FLORIDA. >> WHENEVER YOU'RE READY. >> MAY IT PLEASE THE COURT, MY NAME IS MEGAN LONG WITH >> THE NEXT CASE ON THE DOCKET IS GARRETT VERSUS STATE OF FLORIDA. >> WHENEVER YOU'RE READY. >> MAY IT PLEASE THE COURT, MY NAME IS MEGAN LONG WITH THE PUBLIC DEFENDER'S OFFICE OF THE SECOND JUDICIAL CIRCUIT.

More information

Hoboken Public Schools. Algebra I Curriculum

Hoboken Public Schools. Algebra I Curriculum Hoboken Public Schools Algebra I Curriculum Algebra One HOBOKEN PUBLIC SCHOOLS Course Description Algebra I reflects the New Jersey learning standards at the high school level and is designed to give students

More information

AMA Alliance Legislation Committee s TOP TEN WAYS to Become a More Effective Advocate

AMA Alliance Legislation Committee s TOP TEN WAYS to Become a More Effective Advocate AMA Alliance Legislation Committee s TOP TEN WAYS to Become a More Effective Advocate Only a small fraction of Americans engage in legislative advocacy to support issues that matter to them. Many Americans

More information

First-time voters. Go Big for Obama

First-time voters. Go Big for Obama ABC NEWS/WASHINGTON POST POLL: ELECTION TRACKING #2 EMBARGOED FOR RELEASE AFTER 5 p.m. Tuesday, Oct. 21, 2008 First-Time Voters Go Big for Obama First-time voters underscore Barack Obama's organizational

More information

Accounting for the role of occupational change on earnings in Europe and Central Asia Maurizio Bussolo, Iván Torre and Hernan Winkler (World Bank)

Accounting for the role of occupational change on earnings in Europe and Central Asia Maurizio Bussolo, Iván Torre and Hernan Winkler (World Bank) Accounting for the role of occupational change on earnings in Europe and Central Asia Maurizio Bussolo, Iván Torre and Hernan Winkler (World Bank) [This draft: May 24, 2018] This paper analyzes the process

More information

MTH 174 Calculus with Analytic Geometry II

MTH 174 Calculus with Analytic Geometry II MTH 174 Calculus with Analytic Geometry II Instructor: Dr. Pablo Chalmeta Email: pchalmeta@nr.edu Office: 48 Godbey (Mall 115A) Phone: 674-3600 ext. 4266 OR ext. 4115 Homepage: http://www.nr.edu/chalmeta/

More information

Chapter Five: Forces. Ø 5.1 Forces. Ø 5.2 Friction. Ø 5.3 Forces and Equilibrium

Chapter Five: Forces. Ø 5.1 Forces. Ø 5.2 Friction. Ø 5.3 Forces and Equilibrium Chapter Five: Forces Ø 5.1 Forces Ø 5.2 Friction Ø 5.3 Forces and Equilibrium 5.1 The cause of forces Ø A force is a push or pull, or an action that has the ability to change motion. Ø Forces can increase

More information

GENERAL INTRODUCTION FIRST DRAFT. In 1933 Michael Kalecki, a young self-taught economist, published in

GENERAL INTRODUCTION FIRST DRAFT. In 1933 Michael Kalecki, a young self-taught economist, published in GENERAL INTRODUCTION FIRST DRAFT In 1933 Michael Kalecki, a young self-taught economist, published in Poland a small book, An essay on the theory of the business cycle. Kalecki was then in his early thirties

More information

The Northeast Ohio Coalition for the Homeless, et al. v. Brunner, Jennifer, etc.

The Northeast Ohio Coalition for the Homeless, et al. v. Brunner, Jennifer, etc. 1 IN THE UNITED STATES DISTRICT COURT 2 FOR THE SOUTHERN DISTRICT OF OHIO 3 THE NORTHEAST OHIO ) 4 COALITION FOR THE ) HOMELESS, ET AL., ) 5 ) Plaintiffs, ) 6 ) vs. ) Case No. C2-06-896 7 ) JENNIFER BRUNNER,

More information

ChE 304 Exam 3. Put your name on the back of the exam. Do your own work.

ChE 304 Exam 3. Put your name on the back of the exam. Do your own work. ChE 304 Exam 3 Put your name on the back of the exam. Do your own work. 1. Water i pumped through a 4-inch in diameter pipe (ee the figure (a) below). The pump characteritic (pump head veru flow rate)

More information

Strasserism in the US

Strasserism in the US Strasserism in the US I have several problems with the current system in the USA, that I feel could be addressed by a more meritocratic system. Here is a quick overview of things I would like to cover

More information

STATE OF WISCONSIN CIRCUIT COURT DANE COUNTY Branch 9

STATE OF WISCONSIN CIRCUIT COURT DANE COUNTY Branch 9 STATE OF WISCONSIN CIRCUIT COURT DANE COUNTY Branch FILED 0-0-1 CIRCUIT COURT DANE COUNTY, WI 1CV000 AMY LYNN PHOTOGRAPHY STUDIO, LLC, et al., Plaintiffs, vs. Case No. 1 CV CITY OF MADISON, et al., Defendants.

More information

CSCI211: Intro Objectives

CSCI211: Intro Objectives CSCI211: Intro Objectives Introduction to Algorithms, Analysis Course summary Reviewing proof techniques Jan 7, 2019 Sprenkle CSCI211 1 My Bio From Dallastown, PA B.S., Gettysburg College M.S., Duke University

More information

3 IN THE GENERAL DISTRICT COURT OF PRINCE WILLIAM COUNTY

3 IN THE GENERAL DISTRICT COURT OF PRINCE WILLIAM COUNTY 1 4-7-10 Page 1 2 V I R G I N I A 3 IN THE GENERAL DISTRICT COURT OF PRINCE WILLIAM COUNTY 4 5 * * * * * * * * * * * * * * 6 THIDA WIN, : 7 Plaintiff, : 8 versus, : GV09022748-00 9 NAVY FEDERAL CREDIT

More information

Computational Inelasticity FHLN05. Assignment A non-linear elasto-plastic problem

Computational Inelasticity FHLN05. Assignment A non-linear elasto-plastic problem Computational Inelasticity FHLN05 Assignment 2016 A non-linear elasto-plastic problem General instructions A written report should be submitted to the Division of Solid Mechanics no later than 1 November

More information

Q&A with Diana Pardue

Q&A with Diana Pardue Q&A with Diana Pardue Interviewed by Andrea Appleton Since 1985, Diana Pardue has worked with two of the United States most treasured symbols. She is chief of the museum services division at the Statue

More information

Hoboken Public Schools. Geometry Curriculum

Hoboken Public Schools. Geometry Curriculum Hoboken Public Schools Geometry Curriculum Geometry HOBOKEN PUBLIC SCHOOLS Course Description The Geometry courses present the core content necessary to promote geometric proficiency and prepare students

More information

Common Bill Mistakes. How to spot them and how to avoid them

Common Bill Mistakes. How to spot them and how to avoid them Common Bill Mistakes How to spot them and how to avoid them Quick Glossary Bill - a document that creates a statute Statute - another word for law, can also be referred to as a code section Law - a thing

More information

c M. J. Wooldridge, used by permission/updated by Simon Parsons, Spring

c M. J. Wooldridge, used by permission/updated by Simon Parsons, Spring Today LECTURE 8: MAKING GROUP DECISIONS CIS 716.5, Spring 2010 We continue thinking in the same framework as last lecture: multiagent encounters game-like interactions participants act strategically We

More information

Comparison Sorts. EECS 2011 Prof. J. Elder - 1 -

Comparison Sorts. EECS 2011 Prof. J. Elder - 1 - Comparison Sorts - 1 - Sorting Ø We have seen the advantage of sorted data representations for a number of applications q Sparse vectors q Maps q Dictionaries Ø Here we consider the problem of how to efficiently

More information

>> OUR NEXT CASE OF THE DAY IS DEBRA LAFAVE VERSUS STATE OF FLORIDA. >> YOU MAY PROCEED. >> MAY IT PLEASE THE COURT. I'M JULIUS AULISIO.

>> OUR NEXT CASE OF THE DAY IS DEBRA LAFAVE VERSUS STATE OF FLORIDA. >> YOU MAY PROCEED. >> MAY IT PLEASE THE COURT. I'M JULIUS AULISIO. >> OUR NEXT CASE OF THE DAY IS DEBRA LAFAVE VERSUS STATE OF FLORIDA. >> YOU MAY PROCEED. >> MAY IT PLEASE THE COURT. I'M JULIUS AULISIO. I REPRESENT DEBRA LAFAVE THE PETITIONER IN THIS CASE. WE'RE HERE

More information

5 v. 11 Cv (JSR) 6 SONAR CAPITAL MANAGEMENT LLC, et al., 7 Defendants x 9 February 17, :00 p.m.

5 v. 11 Cv (JSR) 6 SONAR CAPITAL MANAGEMENT LLC, et al., 7 Defendants x 9 February 17, :00 p.m. Case 1:11-cv-09665-JSR Document 20 Filed 03/02/12 Page 1 of 20 1 1 UNITED STATES DISTRICT COURT SOUTHERN DISTRICT OF NEW YORK 2 ------------------------------x 3 SIDNEY GORDON, 4 Plaintiff, 5 v. 11 Cv.

More information

PROPOSED SONOMA COUNTY IMMIGRATION SURVEY

PROPOSED SONOMA COUNTY IMMIGRATION SURVEY PROPOSED SONOMA COUNTY IMMIGRATION SURVEY The questions which appear below were adapted from a 2004 questionnaire on Immigration in America created jointly by National Public Radio, the Kaiser Family Foundation

More information

1 SUPERIOR COURT OF CALIFORNIA 2 COUNTY OF SAN FRANCISCO 3 HONORABLE RICHARD A. KRAMER, JUDGE PRESIDING 4 DEPARTMENT NO.

1 SUPERIOR COURT OF CALIFORNIA 2 COUNTY OF SAN FRANCISCO 3 HONORABLE RICHARD A. KRAMER, JUDGE PRESIDING 4 DEPARTMENT NO. 1 1 SUPERIOR COURT OF CALIFORNIA 2 COUNTY OF SAN FRANCISCO 3 HONORABLE RICHARD A. KRAMER, JUDGE PRESIDING 4 DEPARTMENT NO. 304 5 ---ooo--- 6 COORDINATION PROCEEDING ) SPECIAL TITLE [Rule 1550(b)] ) 7 )

More information

Hello, everyone. This is -----Blake, speaking from Washington, D. G. Because of the controversial nature of the oleo-butter legislation

Hello, everyone. This is -----Blake, speaking from Washington, D. G. Because of the controversial nature of the oleo-butter legislation ~~.~ \ '-.Jev._ - FIE"l'EEN MJ:NU'N IW>It SCRIPT - Senator Joseph R, McCarthy of Wisconsin Senator Hubert H. Humphrey of Minnesota ~ "1 l - 1 q ANNCR: Hello, everyone. This is -----Blake, speaking from

More information

Random Forests. Gradient Boosting. and. Bagging and Boosting

Random Forests. Gradient Boosting. and. Bagging and Boosting Random Forests and Gradient Boosting Bagging and Boosting The Bootstrap Sample and Bagging Simple ideas to improve any model via ensemble Bootstrap Samples Ø Random samples of your data with replacement

More information

SCATTERGRAMS: ANSWERS AND DISCUSSION

SCATTERGRAMS: ANSWERS AND DISCUSSION POLI 300 PROBLEM SET #11 11/17/10 General Comments SCATTERGRAMS: ANSWERS AND DISCUSSION In the past, many students work has demonstrated quite fundamental problems. Most generally and fundamentally, these

More information

Assessing California s Redistricting Commission

Assessing California s Redistricting Commission Assessing California s Redistricting Commission Effects on Partisan Fairness and Competitiveness March 2018 Eric McGhee Outline Background and context Commission plans: fairness Commission plans: competitiveness

More information

Systematic Policy and Forward Guidance

Systematic Policy and Forward Guidance Systematic Policy and Forward Guidance Money Marketeers of New York University, Inc. Down Town Association New York, NY March 25, 2014 Charles I. Plosser President and CEO Federal Reserve Bank of Philadelphia

More information

CSC304 Lecture 16. Voting 3: Axiomatic, Statistical, and Utilitarian Approaches to Voting. CSC304 - Nisarg Shah 1

CSC304 Lecture 16. Voting 3: Axiomatic, Statistical, and Utilitarian Approaches to Voting. CSC304 - Nisarg Shah 1 CSC304 Lecture 16 Voting 3: Axiomatic, Statistical, and Utilitarian Approaches to Voting CSC304 - Nisarg Shah 1 Announcements Assignment 2 was due today at 3pm If you have grace credits left (check MarkUs),

More information

Changes in immigration law and discussion of readings from Guarding the Golden Door.

Changes in immigration law and discussion of readings from Guarding the Golden Door. 21H.221 (Fall 2006), Places of Migration in U.S. History Prof. Christopher Capozzola Session 16: What s New about New Immigration? lecture and discussion Where we re going from here: Today: Immigration

More information

21 Proceedings reported by Certified Shorthand. 22 Reporter and Machine Shorthand/Computer-Aided

21 Proceedings reported by Certified Shorthand. 22 Reporter and Machine Shorthand/Computer-Aided 1 1 CAUSE NUMBER 2011-47860 2 IN RE : VU T RAN, IN THE DISTRICT COURT 3 HARRIS COUNTY, TEXAS 4 PETITIONER 164th JUDICIAL DISTRICT 5 6 7 8 9 ******************************************* * ***** 10 SEPTEMBER

More information

MATH 1340 Mathematics & Politics

MATH 1340 Mathematics & Politics MATH 1340 Mathematics & Politics Lecture 2 June 23, 2015 Slides prepared by Iian Smythe for MATH 1340, Summer 2015, at Cornell University 1 An example (Exercise 1.1 in R&U) Consider the following profile:

More information

What were the final scores in your scenario for prosecution and defense? What side were you on? What primarily helped your win or lose?

What were the final scores in your scenario for prosecution and defense? What side were you on? What primarily helped your win or lose? Quiz name: Make Your Case Debrief Activity (1-27-2016) Date: 01/27/2016 Question with Most Correct Answers: #0 Total Questions: 8 Question with Fewest Correct Answers: #0 1. What were the final scores

More information

ChE 304 Final Exam. ü Mark your answers Put your name on the back

ChE 304 Final Exam. ü Mark your answers Put your name on the back ChE 304 Final Exam ü Mark your anwer Put your name on the back (5). A piton having a cro-ectional area of 0.07 m i located in a cylinder containing water. An open U-tube manometer i connected to the cylinder

More information

Networked Games: Coloring, Consensus and Voting. Prof. Michael Kearns Networked Life NETS 112 Fall 2013

Networked Games: Coloring, Consensus and Voting. Prof. Michael Kearns Networked Life NETS 112 Fall 2013 Networked Games: Coloring, Consensus and Voting Prof. Michael Kearns Networked Life NETS 112 Fall 2013 Experimental Agenda Human-subject experiments at the intersection of CS, economics, sociology, network

More information

CyOP: Cyber-Enhanced Influence Operations and Propaganda

CyOP: Cyber-Enhanced Influence Operations and Propaganda CyOP: Cyber-Enhanced Influence Operations and Propaganda Cybersecurity in the world of psychology, political economics, and social choice theory David M. Perlman, Ph.D. SOFWERX 2018-12-04 How powerful

More information

Determine 2-3 ideal dates for the meeting

Determine 2-3 ideal dates for the meeting Inviting a member of Congress to visit a service organization in person is one of the most effective forms of advocacy. It allows them to see and hear firsthand the impact of national service programs

More information

Minutes Charter Review Committee Subcommittee Meeting on Recall March 15, Present: Billy Cheek, Mike Upshaw, Jorge Urbina, and David Zoltner.

Minutes Charter Review Committee Subcommittee Meeting on Recall March 15, Present: Billy Cheek, Mike Upshaw, Jorge Urbina, and David Zoltner. 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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 Minutes Charter Review Committee Subcommittee Meeting on Recall March 15,

More information

The Mathematics of Voting Transcript

The Mathematics of Voting Transcript The Mathematics of Voting Transcript Hello, my name is Andy Felt. I'm a professor of Mathematics at the University of Wisconsin- Stevens Point. This is Chris Natzke. Chris is a student at the University

More information

Discussion following the Speeches of Mr. Hodgson and Mr. Halpern

Discussion following the Speeches of Mr. Hodgson and Mr. Halpern Canada-United States Law Journal Volume 31 Issue Article 50 January 2005 Discussion following the Speeches of Mr. Hodgson and Mr. Halpern Discussion Follow this and additional works at: http://scholarlycommons.law.case.edu/cuslj

More information

Voter Experience Survey November 2016

Voter Experience Survey November 2016 The November 2016 Voter Experience Survey was administered online with Survey Monkey and distributed via email to Seventy s 11,000+ newsletter subscribers and through the organization s Twitter and Facebook

More information

INVISIBLE ENEMY: THE AFRICAN AMERICAN FREEDOM STRUGGLE AFTER 1965 BY GRETA DE JONG

INVISIBLE ENEMY: THE AFRICAN AMERICAN FREEDOM STRUGGLE AFTER 1965 BY GRETA DE JONG INVISIBLE ENEMY: THE AFRICAN AMERICAN FREEDOM STRUGGLE AFTER 1965 BY GRETA DE JONG DOWNLOAD EBOOK : INVISIBLE ENEMY: THE AFRICAN AMERICAN FREEDOM Click link bellow and free register to download ebook:

More information

Supplementary Tables for Online Publication: Impact of Judicial Elections in the Sentencing of Black Crime

Supplementary Tables for Online Publication: Impact of Judicial Elections in the Sentencing of Black Crime Supplementary Tables for Online Publication: Impact of Judicial Elections in the Sentencing of Black Crime Kyung H. Park Wellesley College March 23, 2016 A Kansas Background A.1 Partisan versus Retention

More information

Mobile Money and Monetary Policy

Mobile Money and Monetary Policy Mobile Money and Monetary Policy Christopher Adam and Sébastien Walker University of Oxford 12 February 2015 Outline Motivation: Mobile Money and Monetary Policy An alternative framework: Anand and Prasad

More information

The road back: Ohio town hopes Trump presidency brings turnaround

The road back: Ohio town hopes Trump presidency brings turnaround The road back: Ohio town hopes Trump presidency brings turnaround By Washington Post, adapted by Newsela staff on 01.26.17 Word Count 941 The Murphy Theatre in downtown Wilmington, Ohio. Washington Post

More information

Magistrates Court Mock Trial Competition. CASE 1: R. v LOW. Organised in partnership with. Sponsored by

Magistrates Court Mock Trial Competition. CASE 1: R. v LOW. Organised in partnership with. Sponsored by Magistrates Court Mock Trial Competition CASE 1: R. v LOW Sponsored by Organised in partnership with R. v George Low case 1 Summary of Facts Following a call from a member of the public on a No 88 bus,

More information

Electoral Snakes and Ladders

Electoral Snakes and Ladders Electoral Snakes and Ladders Anyone who has played snakes and ladders knows that, just before the winning square, there is always a big bad snake s head, to take the would be winner right back to square

More information

IN THE CIRCUIT COURT COURT FOR THE 15TH JUDICIAL CIRCUIT IN AND FOR PALM BEACH COUNTY, FLORIDA. v. : Case No. : CA018991XXXX MB. v. :Case No.

IN THE CIRCUIT COURT COURT FOR THE 15TH JUDICIAL CIRCUIT IN AND FOR PALM BEACH COUNTY, FLORIDA. v. : Case No. : CA018991XXXX MB. v. :Case No. IN THE CIRCUIT COURT COURT FOR THE 15TH JUDICIAL Page 1 CIRCUIT IN AND FOR PALM BEACH COUNTY, FLORIDA ----------------------------x WELLS FARGO BANK, NA, : Plaintiff, : v. : Case No. et al. :50 2010 CA018991XXXX

More information

IN THE SUPERIOR COURT OF THE STATE OF WASHINGTON IN AND FOR THE COUNTY OF SNOHOMISH. Petitioner, ) vs. ) Cause No Defendant.

IN THE SUPERIOR COURT OF THE STATE OF WASHINGTON IN AND FOR THE COUNTY OF SNOHOMISH. Petitioner, ) vs. ) Cause No Defendant. IN THE SUPERIOR COURT OF THE STATE OF WASHINGTON IN AND FOR THE COUNTY OF SNOHOMISH MICHAEL RAETHER AND SAVANNA ) RAETHER, ) ) Petitioner, ) ) vs. ) Cause No. --0-0 DEUTSCHE BANK NATIONAL TRUST ) COMPANY;

More information

Proving correctness of Stable Matching algorithm Analyzing algorithms Asymptotic running times

Proving correctness of Stable Matching algorithm Analyzing algorithms Asymptotic running times Objectives Proving correctness of Stable Matching algorithm Analyzing algorithms Asymptotic running times Wiki notes: Read after class; I am giving loose guidelines the point is to review and synthesize

More information

>> THE NEXT CASE ON THE DOCKET IS THE CASE OF CLARKE V. UNITED STATES OF AMERICA. WHAT DID I SAY, CLARKE V. UNITED STATES? >> YEAH.

>> THE NEXT CASE ON THE DOCKET IS THE CASE OF CLARKE V. UNITED STATES OF AMERICA. WHAT DID I SAY, CLARKE V. UNITED STATES? >> YEAH. >> THE NEXT CASE ON THE DOCKET IS THE CASE OF CLARKE V. UNITED STATES OF AMERICA. WHAT DID I SAY, CLARKE V. UNITED STATES? >> YEAH. >> YOU MAY PROCEED WHEN YOU'RE READY, COUNSEL. >> THANK YOU, MR. CHIEF

More information

Discussion of "Risk Shocks" by Larry Christiano

Discussion of Risk Shocks by Larry Christiano Discussion of "Risk Shocks" by Larry Christiano Conference Celebrating Tom Sargent & Chris Sims Lee E. Ohanian Minneapolis Fed May, 2012 Ohanian (Institute) Ohanian 10/10 1 / 15 Firm-Level Shifts in Variance

More information

Batch binary Edwards. D. J. Bernstein University of Illinois at Chicago NSF ITR

Batch binary Edwards. D. J. Bernstein University of Illinois at Chicago NSF ITR Batch binary Edwards D. J. Bernstein University of Illinois at Chicago NSF ITR 0716498 Nonnegative elements of Z: etc. 0 meaning 0 1 meaning 2 0 10 meaning 2 1 11 meaning 2 0 + 2 1 100 meaning 2 2 101

More information

Guided Study Program in System Dynamics System Dynamics in Education Project System Dynamics Group MIT Sloan School of Management 1

Guided Study Program in System Dynamics System Dynamics in Education Project System Dynamics Group MIT Sloan School of Management 1 Guided Study Program in System Dynamics System Dynamics in Education Project System Dynamics Group MIT Sloan School of Management 1 Solutions to Assignment #11 December 17, 1998 Reading Assignment: Please

More information

NOT DESIGNATED FOR PUBLICATION. Nos. 116, ,102 IN THE COURT OF APPEALS OF THE STATE OF KANSAS. STATE OF KANSAS, Appellant,

NOT DESIGNATED FOR PUBLICATION. Nos. 116, ,102 IN THE COURT OF APPEALS OF THE STATE OF KANSAS. STATE OF KANSAS, Appellant, NOT DESIGNATED FOR PUBLICATION Nos. 116,101 116,102 IN THE COURT OF APPEALS OF THE STATE OF KANSAS STATE OF KANSAS, Appellant, v. PATRICK MICHAEL MCCROY, Appellee. MEMORANDUM OPINION Appeal from Reno District

More information

PRESENTATION TRANSCRIPT

PRESENTATION TRANSCRIPT PRESENTATION TRANSCRIPT 11/19/14 On Monday you had the opportunity to meet Grace; she was one of the team members on the Attorney General's Anti- Trafficking Special Projects Team. In a moment, you're

More information

UNITED STATES BANKRUPTCY COURT WESTERN DISTRICT OF PENNSYLVANIA

UNITED STATES BANKRUPTCY COURT WESTERN DISTRICT OF PENNSYLVANIA UNITED STATES BANKRUPTCY COURT WESTERN DISTRICT OF PENNSYLVANIA IN RE:. Case No. 0-.. SHARON DIANE HILL,.. USX Tower - th Floor. 00 Grant Street. Pittsburgh, PA Debtor,.. December 0, 00................

More information

PREPARED REMARKS FOR COMMERCE SECRETARY GARY LOCKE Asia Society and Woodrow Wilson Center event on Chinese FDI Washington, DC Wednesday, May 4, 2011

PREPARED REMARKS FOR COMMERCE SECRETARY GARY LOCKE Asia Society and Woodrow Wilson Center event on Chinese FDI Washington, DC Wednesday, May 4, 2011 PREPARED REMARKS FOR COMMERCE SECRETARY GARY LOCKE Asia Society and Woodrow Wilson Center event on Chinese FDI Washington, DC Wednesday, May 4, 2011 I really appreciate the warm welcome from Ambassador

More information

Migration, Intermediate Inputs and Real Wages

Migration, Intermediate Inputs and Real Wages Migration, Intermediate Inputs and Real Wages by Tuvana Pastine Bilkent University Economics Department 06533 Ankara, Turkey and Ivan Pastine Bilkent University Economics Department 06533 Ankara, Turkey

More information

Module 2 Legal Infrastructure

Module 2 Legal Infrastructure Module 2 Legal Infrastructure Part 3 Legal Infrastructure at Work Insights from Current Evidence.MP4 Media Duration: 21:11 Slide 1 Our final part looks at legal infrastructure at work. We looked at a bunch

More information

STATE OF NEW MEXICO COUNTY OF DONA ANA THIRD JUDICIAL DISTRICT CV WILLIAM TURNER, Plaintiff, vs.

STATE OF NEW MEXICO COUNTY OF DONA ANA THIRD JUDICIAL DISTRICT CV WILLIAM TURNER, Plaintiff, vs. 0 0 STATE OF NEW MEXICO COUNTY OF DONA ANA THIRD JUDICIAL DISTRICT WILLIAM TURNER, vs. Plaintiff, CV-0- ROZELLA BRANSFORD, et al., Defendants. TRANSCRIPT OF PROCEEDINGS On the th day of November 0, at

More information

Thinkwell s Homeschool Economics Course Lesson Plan: 36 weeks

Thinkwell s Homeschool Economics Course Lesson Plan: 36 weeks Thinkwell s Homeschool Economics Course Lesson Plan: 36 weeks Welcome to Thinkwell s Homeschool Economics! We re thrilled that you ve decided to make us part of your homeschool curriculum. This lesson

More information

Preventing Jail Crowding: A Practical Guide

Preventing Jail Crowding: A Practical Guide Preventing Jail Crowding: A Practical Guide Understanding the sources of jail crowding Try to visualize a graph...one line sloping downwards, the other sloping upwards. The first line represents the decline

More information

Next to him is Jeff Cox, University of Iowa history professor and board member of the Hawkeye Chapter of the Iowa ACLU, thanks for being here, Jeff.

Next to him is Jeff Cox, University of Iowa history professor and board member of the Hawkeye Chapter of the Iowa ACLU, thanks for being here, Jeff. Hello, and welcome to WorldCanvass from International Programs at the University of Iowa, I'm Joan Kjaer and we're coming to you from Merge in downtown Iowa City. This is part two of our program on the

More information

Essential Questions Content Skills Assessments Standards/PIs. Identify prime and composite numbers, GCF, and prime factorization.

Essential Questions Content Skills Assessments Standards/PIs. Identify prime and composite numbers, GCF, and prime factorization. Map: MVMS Math 7 Type: Consensus Grade Level: 7 School Year: 2007-2008 Author: Paula Barnes District/Building: Minisink Valley CSD/Middle School Created: 10/19/2007 Last Updated: 11/06/2007 How does the

More information

A Mixed-Methods Evaluation of the Adolescent Marijuana Delinquent Act Citation (DAC) Program in Hillsborough County

A Mixed-Methods Evaluation of the Adolescent Marijuana Delinquent Act Citation (DAC) Program in Hillsborough County A Mixed-Methods Evaluation of the Adolescent Marijuana Delinquent Act Citation (DAC) Program in Hillsborough County Vanessa Tate, B.A., CPH (provisional) Lauren Julian, B.A. Alexis McKinley, B.S. 1 OVERVIEW

More information

Page 1. 10:10 a.m. Veritext Legal Solutions

Page 1. 10:10 a.m. Veritext Legal Solutions 1 IN THE COURT OF COMMON PLEAS OF CUYAHOGA COUNTY, OHIO 2 ~~~~~~~~~~~~~~~~~~~~ 3 BANK OF AMERICA, N.A., etc. 4 Plaintiff, 5 vs. Case No. CV-12-789401 6 EDGEWATER REALTY, LLC, et al. 7 Defendant. 8 ~~~~~~~~~~~~~~~~~~~~

More information