5 Pages

Lab+Assignment+12+-+Part+1

Course: ENGINEERIN 7, Fall 2011
School: Berkeley
Rating:
 
 
 
 
 

Word Count: 1551

Document Preview

11 Assigned: November 2011 Fall 2011 Due: 18 November 2011 E7 Laboratory Assignment 12 This lab covers the simulation of ordinary dierential equations (ODEs) and statistics. The range of ODE simulations provided in this lab should prepare you to simulate any ODE in the future. The statistics problems provided should equip you with valuable techniques to analze data with. Note: You will use MATLABs publish...

Register Now

Unformatted Document Excerpt

Coursehero >> California >> Berkeley >> ENGINEERIN 7

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.
11 Assigned: November 2011 Fall 2011 Due: 18 November 2011 E7 Laboratory Assignment 12 This lab covers the simulation of ordinary dierential equations (ODEs) and statistics. The range of ODE simulations provided in this lab should prepare you to simulate any ODE in the future. The statistics problems provided should equip you with valuable techniques to analze data with. Note: You will use MATLABs publish command (accessible in the Editor window via File -> Publish Filename) to generate a printable document that contains your code and your answers. 1. You must turn in a printed copy to the homework boxes in room 1109 Etcheverry. Further, you will need to use the command type to display your functions in your main script. You will not get credit for the functions you have written unless you display them! Be sure to turn your printout into the box corresponding to the lab section in which you are registered. The due date is 12:00 pm (noon) on November 18, 2011. 2. Your primary m-le, which is used to generate the HTML document, and all of the function m-les that you create must also be uploaded to bSpace (under the Assignments tab) by noon on November 18, 2011. Please (i) have your full name, student ID number, and lab section number at the head of the le and (ii) name this le lastname middlename firstname lab12.m. Use the clear; format compact commands at the beginning of your script to clear the variables from the base workspace and format appropriately to reduce the length of the output. If your comments exceed the page border, highlight the comment and go to Text->Wrap Comment. In several problems, you are asked to execute a number of given lines, and explain (in a comment before the line) what the command does. Some lines might produce an error (this is deliberate, on our part). In that case, after you understand what is the issue, comment out that line (using the % symbol) in your script le and explain why the error occurred. Part A: Introduction to ODEs 1. Warm-up problem: using ode45 to solve 1st order ODEs. Start by creating anonymous functions for the ODEs listed below. Use a time span of 0 to 10 seconds, i.e., tspan = [0 10]. Note that by default ode45 will use an adaptive step size when simulating the ODE. Use initial conditions of 1 for each element in the dependent variable vector x and refer to the lecture notes for the use of ode45. Plot the dependent variable vector x as a function of the independent variable (here, time t), i.e., plot(t,x). If an analytical solution is provided, include it as well in the plot, and be sure to label each solution curve within the legend. In the following three cases, the dependent variable is a scalar: 1 of 5 Assigned: 11 November 2011 Fall 2011 Due: 18 November 2011 x = cos t (analytical solution: x = 1 + sin t) x = x (analytical solution x = et ) x = x (analytical solution x = et ) Another option is for the function handle that represents the ODE to contain other inputs besides the independent and dependent variables. To implement this, create a function handle for the ODE given below with an additional input argument pVal that represents the value of the scalar variable p. x = px (analytical solution x = ept ) Now, use ode45 to simulate this ODE for the following three cases: p = 0.1, p = -0.5, and p = -0.1. In order to do this, you need to create a function handle, called @fp with arguments t and x, that will call another function handle, called odefun, that denes the created with right-hand side of the ODE. An example of this for p = 0.1 is shown below: begin code 1 2 odefun = @(t,x,p) p*x; fp = @(t,x) odefun(t,x, 0.1); end code Simulate all three cases and plot the state vectors of each in the same gure with a legend. In the next case, the dependent variable is a 2 1 vector. Simulate this ODE and plot both of the state vectors in the same gure with a legend. x= x2 x1 = x1 x2 2. Warm-up problem: usage of ode45 to solve higher-order ODEs. Start by creating anonymous functions for the ODEs listed below. You will have to transform the higher-order (greater than 1) ODEs to a series of 1st order ODEs. The order of an ODE is dened by the order of the highest order derivative contained in the ODE. Use a time span of 0 to 10 seconds. Use initial conditions of 1 for each element in the state vector. Plot the state vector x as a function of time t, i.e., plot(t,x). This is a 2nd order system. x+x+x=0 This is a forced 2nd order system. x + x + x = f (t) where f (t) = sin(t) You should be able to use the techniques used in this problem to solve ODEs of any order. 2 of 5 Assigned: November 11 2011 Fall 2011 Due: 18 November 2011 Part B: Simulating Population Dynamics 3. In this problem, you will use ode45 to simulate a population dynamics problem, sometimes referred to as a predator-pray (e.g., fox-rabbit) problem. These problems predict the growth (or shrinkage) in the population of two species (a predator and a prey species) based on some assumed model of their interaction. Let the sizes of the prey and predator populations be denoted x and y , respectively, and assume that the population growth of the two species is described by the rst-order ODEs: Prey population growth, x = x(a1 a2 y ) preyyear1 Predator population growth, y = y (a3 a4 x) predatorsyear1 The parameters entering the preceding equations take the following values: Prey growth rates, a1 = 0.55 year1 , a2 = 0.034 predators1 year1 Predator growth rates, a3 = 0.9 year1 , a4 = 0.011 prey1 year1 Clearly, the two equations are coupled, therefore need to be solved as a system (as opposed to be solved separately). Start by creating anonymous functions for the system of ODEs. Then, solve the system using a time span of 0 to 100 years and initial conditions of 100 prey and 5 predators. Finally, generate a single plot of the prey population variable x and the predator population variable y as a function of time t. The version of the expected plot is included below for reference. a1 = 0.550, a2 = 0.034, a3 = 0.900, a4=0.011 180 Prey Predators 160 140 Population 120 100 80 60 40 20 0 0 10 20 30 40 50 Time (Years) 60 70 80 Figure 1: Predator-Prey Populations 3 of 5 90 100 Assigned: 11 November 2011 Fall 2011 Due: 18 November 2011 Part C: Simulating Physical Systems 4. In this problem, you will use ode45 to simulate the motion of the double-pendulum illustrated in the gure below. g L1 L2 y x Figure 2: Double Pendulum The equations of motion of the double pendulum are as follows: = m2 L1 2 sin( ) cos( )+gm2 sin( ) cos( )m2 L2 2 sin( )(m1 +m2 )g sin() L1 (m1 +m2 )m2 L1 cos( )2 = m2 L2 2 sin( ) cos( )+g sin() cos( )(m1 +m2 )+L1 2 sin( )(m1 +m2 )g sin( )(m1 +m2 ) L2 (m1 +m2 )m2 L2 cos( )2 Here and are the angles of the two rods of the pendulum from the vertical conguration, as in the gure. Also, m1 , m2 are the two masses (located at the ends of the two rods of length L1 and L2 , respectively), and g is the gravitational acceleration. Assume that the preceding parameters take the following values: Gravitational acceleration, g = 9.81 ms2 Length of rod 1, L1 = 1 m Length of rod 2, L2 = 1 m Mass of joint 1, m1 = 1 kg Mass of joint 2, m2 = 1 kg Two cases of the double pendulum problems will be analyzed, with initial conditions dened as follows: 4 of 5 Assigned: 11 November 2011 Fall 2011 Due: 18 November 2011 (a) Case 1 Angular Angular Angular Angular position of rod 1, = 0.5 rad velocity of rod 1, = 0 rads1 position of rod 2, = 0.5 rad velocity of rod 2, = 0 rads1 (b) Case 2 Angular Angular Angular Angular position of rod 1, = 0.001 rad velocity of rod 1, = 0 rads1 position of rod 2, = + 0.001 rad velocity of rod 2, = 0 rads1 Start by creating an anonymous function, called dpend, for the double pendulum ODEs that you will subsequently use to call ode45. 1 Use a time span of 0 to 20 seconds, but specify that the outputs of ode45 should be every 30 seconds. To do this dene the time span as an evenly spaced vector from 0 to 20 with increments 1 of 30 , i.e., dene tspan = 0:1/30:20. Note when solving the problem, ode45 will still use an adaptive step size to control error, but will output values at the intervals specied by the time span vector. Below is a script to animate the double pendulum. Include this in your script le so that the nal gure is displayed in your published le. Note that handle graphics would be a better way to do this animation. In order for the following script to run properly, the outputs of your call to ode45 should be the time vector, t, and the state vector, x. The state vector should have the form: x = [ ]. begin code 1 2 3 4 5 6 7 8 9 10 11 12 13 % Position of mass 1 with respect to the origin x1 = L1*sin(x(:,1)); y1 = -L1*cos(x(:,1)); % Position of mass 2 with respect to the origin x2 = x1+L2*sin(x(:,3)); y2 = y1-L2*cos(x(:,3)); for i = 1:length(t) clf; plot([0 x1(i)],[0 y1(i)],b); hold on; plot(x1(i),y1(i),r.); plot([x1(i) x2(i)],[y1(i) y2(i)],b); plot(x2(i),y2(i),r.); plot(x2(1:i),y2(1:i),k--); title(sprintf(Time: %.1f seconds,t(i))); xlabel(x); ylabel(y); axis equal; axis([-2,2,-2,2]); hold off; pause(1/30); drawnow; end end code 5 of 5
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:

Berkeley - ENGINEERIN - 7
Assigned: September 9, 2011Fall 2011Due: September 16, 2011E7 Laboratory Assignment 3The purpose of this lab is to introduce the creation and manipulation of two-dimensional arrays andsome built-in polynomial operations.Note: You will use MATLABs pu
Berkeley - ENGINEERIN - 7
Assigned: September 30, 2011Fall 2011Due: October 7, 2011E7 Laboratory Assignment 6The purpose of this lab is to produce an environment that will simulate the game Mastermind. Seethe lecture slides for an explanation of the rules of the game. Weve pr
Berkeley - ENGINEERIN - 7
Assigned: October 7Fall 2011Due: October 14E7 Laboratory Assignment 7The purpose of this lab is to introduce you to the concepts of induction, recursion, trees, and how theycan be used to solve dierent types of problems. You will learn about some of
Berkeley - ENGINEERIN - 7
Assigned: October 28Fall 2011Due: November 4E7 Laboratory Assignment 10The purpose of this lab is to introduce you to regression and interpolation. You will learn about usingleast squares approximations to t equations to data and using linear and cub
Berkeley - ENGINEERIN - 7
Assigned: November 04, 2011Fall 2011Due: November 11, 2011E7 Laboratory Assignment 11This lab is divided into two parts. The optimization part which will introduce you to Linear Programing (LP) problems, Non-Linear Programs that can be transformed int
Berkeley - ENGINEERIN - 7
Assigned: 11 November 2011Fall 2011Due: 18 November 2011E7 Laboratory Assignment 12This lab covers the simulation of ordinary dierential equations (ODEs) and statistics. The range ofODE simulations provided in this lab should prepare you to simulate
Berkeley - ENGINEERIN - 7
Assigned: November 18Fall 2011Due: November 23E7 Laboratory Assignment 13The purpose of this lab is to introduce you to sorting and searching algorithms in MATLAB. You will learnabout and implement dierent methods and algorithms that are commonly use
Berkeley - ENGINEERIN - 7
Assigned: November 24, 2011Fall 2011Due: December 02, 2011E7 Laboratory Assignment 14In this lab we will address the question of how to assess and quantify the eciency of an algorithm usingits time complexity. Additionally, the second part of the lab
UCF - MAN - 3025
Chapter 9VOCABULARY: Data- statistics and other individual facts and observations Information- data presented in a meaningful way that assists decision making Information Technology- uses computers to assist people in gathering, storing and processing in
UCF - MAN - 3025
Chapter 10 VOCABULARY: Planning- method of determining important goals in advance, as well as the best way to achieve them Objectives- end results that one is determined to achieve Complacency trap- situation in which an organization, team, or individual
UCF - MAN - 3025
Chapter 11: Communication and Information Technology Interpersonal Communication The communication process o Symbolic interaction Symbol representation of the object, experience, happening, concept or idea that's being communicated Advantages can be used
Berkeley - IEOR - 171
Experiment 26: Thermodynamics of the Dissolution of BoraxYour Name Lab Partner: Chemistry 1300 Instructor: Dr. Giarikos Laboratory Assistant: Date of Experiment:Abstract:The purpose of this experiment was to determine the thermodynamic properties of th
Berkeley - MUSIC - 139
Nabhojit Banerjee1/28/12Music 139Week 1 ResponseDefining Israeli music requires the synthesis of a singular, cogent culture from a largevariety of different backgrounds, nationalities, and identities. Established as recently as 1948, thenation of Is
Berkeley - MUSIC - 139
Nabhojit Banerjee2/3/12Music 139Response 2Among Jews, there is an underlying and definitive desire for reunion with Jerusalem.This is shown in the near universal longing for Jerusalem in the musical traditions of Jewsaround the world and the fact th
Berkeley - MUSIC - 139
Nabhojit BanerjeeResponse 3The founding of the State of Israel required the establishment of a national culture. Withcultural elements from the Palestinian Arabs and Jews from around the world, Israel needed aunifying, directed, and universally relata
Berkeley - MUSIC - 139
Nabhojit Banerjee2/19/12Music 139Response #4The land of Israel was, for centuries, occupied primarily by primarily Middle Easternpeoples with distinctly Middle Eastern musical traditions. When significant number of Jewsstarted immigrating to Israel,
Berkeley - MUSIC - 139
Nabhojit Banerjee2/25/12Music 139Response #5As related in the Regev-Seroussi text, the Israeli Defense Force has been instrumental inpromoting and shaping Israeli musical interests through Army ensembles. Israeli military bandshave proven to be a re
Berkeley - MUSIC - 139
Nabhojit BanerjeeResponse #7The Jewish diaspora created a huge variety of different cultural traditions that resulted inthe state of Israel needing to come to grips with the large quantity of old themes accumulatedby the ancient division of the Jewish
Berkeley - MUSIC - 139
Nabhojit Banerjee3/17/12Music 139Response #8With the establishment of the state of Israel came a polity to which Jews of allnationalities could find refuge. A particularly large number of Jews subsequently came frompredominantly Muslim countries and
Berkeley - MUSIC - 139
Nabhojit Banerjee4/7/12Music 139Response #10With the creation and development of rock, and subsequently, pop, Western music hasspread its influence across the world in a very short period of time. Israel is no exception.Located in the Middle East, b
Broward College - MATH - 102
What Is an Information System?The Components of an Information System1Computer-Based Information Systems(continued) CBIS components Hardware: computer equipment used to performinput, processing, and output activities Software: computer programs th
Broward College - MATH - 102
Hardware Components Central processing unit (CPU) Arithmetic/logic unit (ALU): performs calculationsand makes logical comparisons Control unit: accesses, decodes and coordinatesdata in CPU and other devices Primary memory: holds program instructions
Broward College - MATH - 102
Why Learn About Database Systems? Database systems process and organize largeamounts of data Examples Marketing manager can access customer data Corporate lawyer can access past cases andopinionsWhat Sysoft eRFP can do?1Introduction Database: an
Broward College - MATH - 102
An Overview of Telecommunications Telecommunications: the electronic transmissionof signals for communications Telecommunications medium: anything thatcarries an electronic signal and interfaces betweena sending device and a receiving device1An Ove
Broward College - MATH - 102
An Introduction to ElectronicCommerce Electronic commerce: conducting businessactivities (e.g., distribution, buying, selling,marketing, and servicing of products or services)electronically over computer networks such as theInternet, extranets, and
Broward College - MATH - 102
Decision Making and Problem Solving:Decision Making as a Component ofProblem Solving Decision-making phase: first part of problemsolving process Intelligence stage: identify and define potentialproblems or opportunities Design stage: develop alterna
Broward College - MATH - 102
Knowledge Management Systems Knowledge: awareness and understanding of aset of information and the ways that informationcan be made useful to support a specific task orreach a decision Knowledge management system (KMS):organized collection of people
Broward College - MATH - 102
Systems Development Life Cycles The systems development process is also called asystems development life cycle (SDLC) Common SDLCsTraditional systems development life cyclePrototypingRapid application development (RAD)End-user development1The Tra
Broward College - MATH - 102
Computer CrimeOften defies detectionAmount stolen or diverted can be substantialCrime is clean and nonviolentNumber of IT-related security incidents isincreasing dramatically Computer crime is now global1The Computer as a Tool to CommitCrime Cri
Broward College - MATH - 102
FIXED-INCOME SECURITIESChapter 7Passive Fixed-IncomePortfolio ManagementOutlinePassive StrategiesPassive FundsStraightforward ReplicationStratified SamplingTracking Error MinimizationSample Covariance EstimateExponentially-Weighted Covariance E
Broward College - MATH - 102
FIXED-INCOME SECURITIESChapter 17Mortgage-Backed SecuritiesOutline Definition and Typology Mortgage Pass-Throughs Collateralized Mortgage Obligations Stripped MBS Pricing of MBSIssuers of BondsDefinition and Typology MBS are securities that are
UCF - MAR - 3503
SONY VS. CANONCONSUMER BEHAVIORPROFESSOR XIN HEPart 1. Attitude SurveyMany would argue that Canon and Sony are a lot alike. Admitting that they do havemany similarities, the question is which brand do people like better? Our group came up witha numb
UCF - MAR - 3503
CANONCONSUMER BEHAVIORPROFESSOR XIN HEPart 1. Ghost ShoppingVisiting our first store Wal-Mart, it came as a shock to see the lack of organization of thecameras display. Each different camera was exhibited all mixed together with different brandsand
Cornell - AEM - 3230
AEM 3230 - Spring Term 2012 Version 1Managerial AccountingSpring Term 2012General Information: Staff Professor: Administrative Assistant: Administrative TA: TAs: Margaret Shackell, Ph.D. Gretchen Gilbert Julie Klatzkin Dana Powder Stephen Lane Marshall
Cornell - AEM 3230 - 3230
Test #_AEM323 Managerial Accounting Spring 2008 Midterm Exam KEY March 11, 2008Name:Sec # Day/Time LocationTA:W 7:30-9:25 W 7:30-9:25 R 10:10-12:05 R 10:10-12:05 R 12:20-2:15 R 12:20-2:15 R 2:30-4:25 R 2:30-4:25 F 10:10-12:05 F 12:20-2:15 W 7:30-9:25
Cornell - AEM 3230 - 3230
Test #_AEM323 Managerial Accounting Spring 2008 Midterm Exam March 11, 2008Name:Sec # Day/Time LocationTA:W 7:30-9:25 W 7:30-9:25 R 10:10-12:05 R 10:10-12:05 R 12:20-2:15 R 12:20-2:15 R 2:30-4:25 R 2:30-4:25 F 10:10-12:05 F 12:20-2:15 W 7:30-9:25 WN2
Cornell - AEM 3230 - 3230
Demo Problems Chapter 1 Problem 1 Determine what type of cost each item is: DL, DM, MOH, Selling or Administrative?1) 2) 3) 4) 5) 6) 7) 8) 9) 10) 11) 12)13) 14)Wages of employees who build the hulls _ Cost of advertising in the local newspapers _ Cost
Cornell - AEM 3230 - 3230
Demo Problems Chapter 2 Problem 1 Logan Products computes its predetermined overhead rate annually on the basis of direct labor hours. At the beginning of the year it estimated that its total manufacturing overhead would be $586,000 and the total direct l
Cornell - AEM 3230 - 3230
Demo Problems Chapter 3 Problem 1 Tioga Company manufactures sophisticated lenses and mirrors used in large optical telescopes. The controller estimates the amount of overhead that should be allocated to the individual product lines from the following inf
Cornell - AEM 3230 - 3230
Demo Problems Chapter 4 Problem 1 Arizona Brick Corporation produces bricks in two processing departments-molding and firing. Information relating to the company's operations in March follows: a.Raw materials were issued for use in production: Molding D
Cornell - AEM 3230 - 3230
Demo Problems Chapter 5 Problem 1 The Edelweiss Hotel in Vail, Colorado, has accumulated records of the total electrical costs of the hotel and the number of occupancydays over the last year. An occupancyday represents a room rented out for one day. The h
Cornell - AEM 3230 - 3230
Demo Problems Chapter 6 Problem 1 Last month when Harrison Creations, Inc., sold 40,000 units, total sales were $300,000, total variable expenses were $240,000, and total fixed expenses were $45,000. Required: 1.What is the company's contribution margin
Cornell - AEM 3230 - 3230
.Demo Problems Chapter 8Problem 1 An incomplete flexible budget for overhead is given below for AutoPutz, Gmbh, a German company that owns and operates a large automatic carwash facility near Kln. The German currency is the euro, which is denoted by . R
Cornell - AEM 3230 - 3230
Demo Problems Chapter 9 Problem 1 Harmon Household Products, Inc., manufactures a number of consumer items for general household use. One of these products, a chopping block, requires an expensive hardwood. During a recent month, the company manufactured
Cornell - AEM - 1200
Name: Student ID #: Electronic ID #:AEM 1200 Introduction to Business ManagementOptional Extra Credit Checklist - Spring 2012Phase 1 of the assignment has to be fully completed and satisfactory in order to be able to earn extracredit for Phase 2. When
Cornell - AEM - 1200
Amanda, Charlie, Ed Competitive (ex: Buffett retires) Economic (ex: Volcker rule) Global (ex: China lower reserve rate) Social (ex: global warming) Technological (ex: noninvasive aorta catheter)Given an example, be able to identify what environment it
Cornell - AEM - 1200
Department of Applied Economics and Management CORNELL UNIVERSITY AEM 1200 INTRODUCTION TO BUSINESS MANAGEMENT Pedro David Prez Spring 2012PeopleActivitiesProf. Perez lectures Guest lectures Jennifer DeRosa, CALS Career Development, 1/27; Prof. Jack
Cornell - AEM - 1200
AEM1200, Introduction to Business ManagementWednesday 1/25 Business ManagementWhat is business? A short history Profits, risk and business The stakeholder corporation and corporate social responsibilityAn activity that strives to generate long-term pro
Cornell - AEM - 1200
AEM1200, Introduction to Business Management.Monday 1/30 The Business EnvironmentDefinition Dimensions Economic environment Competitive environment Technological environment Social environment Global environmentThe setting in which businesses operate
Cornell - AEM - 1200
AEM1200, Introduction to Business ManagementWednesday 2/1-Friday 2/3 Business Ownership, Shareholders and StakeholdersForms of business ownership Sole proprietorship Partnership Corporation Mixed Forms and LLC FranchiseProblems with the corporate for
Cornell - AEM - 1200
AEM1200, Introduction to Business Management.Friday 2/10AccountingAccounting and the accounting profession Financial statements: the balance sheet Financial statements: the income statementAccountingThe recording, classifying, summarizing, and interp
Cornell - ILR - ILR2020
1) The companys contractual responsibility is to fill this job position with the best qualifiedemployee from the callback list, if the job is not filled by procedure described in Article 10.1.(a),(b) or (c). The company may hire a new employee if in the
Delaware - MATH - 341
M ath 311 S ection O i l : F inal K xainNAMK:This t ost h as 1 2 q uestions o n 1 2 pages, p lus a b lank p a^e a t t he e ndThe p oints p er p a^e a n 1 5, 5. 5,5, B. ( >,(). ( i,(>, G .(i,(i..r> p oiulsj 1 . F ind I he g eneral s olution ol t i n 1
Delaware - MATH - 341
fad'- [5oiAc^3/~ 2H3-/' ^ pr- 23 -V233Math 341 Section O il: Test #3This test has 6 questions on 6 pages. Each page is worth the same.1. Let B be the ordered basis cfw_ ui,u 2 where U T =[3 points] la. Find the coordinates of31/fc . /
Delaware - MATH - 341
Math 341 Section 011: Test #1This test has 6 questions on 6 pages. Each question is worth the same.1. Find the general solution of the dierential equationdy+ 6xy 2 = 0.dx12. Solve the initial value problemxy + 3y = 5x2 ,2y (2) = 5.3. Solve the
Delaware - MATH - 341
Math 341 Section 011: Test #2This test has 6 questions on 6 pages. Each question is worth the same.1. Solve the system10011011101000110101 0x10 x2 01 1 x3 = 0 1 x4 00x5012. Compute the product143 320 1 4 1 1002 452
Delaware - MATH - 341
Math 341 Section 011: Test #3This test has 6 questions on 6 pages. Each page is worth the same.1. Let B be the ordered basis cfw_u1 , u2 where u1 =34and u2 =.23[3 points] 1a. Find the coordinates of5with respect to B .4[3 points] 1b. Find th
Delaware - MATH - 341
Math 341 Section 011: Final ExamNAME:This test has 12 questions on 12 pages, plus a blank page at the end.The points per page are 5,5,5,5,6,6,6,6,6,6,6,6.[5 points] 1. Find the general solution of the dierential equationdy= y cos x.dx1[5 points]
Delaware - MATH - 242
Math 242, Sections 010 and 011, Spring 2012Suggested discussion problems, Tuesday February 7th1a. Expand (x 2)3 .1b. Expand and simplify:x2 + x + x2 + x x) (xx2 + x + x1c. By trying large values of x such as x = 1000, guess the limit of the above
Delaware - MATH - 242
Math 242, Sections 010 and 011, Spring 2012Suggested discussion problems, Tuesday February 7th1a. Expand (x 2)3 .1b. Expand and simplify:x2 + x + x2 + x x) (xx2 + x + x1c. By trying large values of x such as x = 1000, guess the limit of the above
Delaware - MATH - 242
Math 242, Sections 010 and 011, Spring 2012Suggested discussion problems, Tuesday February 14th1. Evaluate the limit.x sin xx0 x tan xlim12. Evaluate the limit.lim x+x02x3. Find the area bounded by the curves y = |x| and y = x2 2.34. Let A