9 Pages

Lab3_F2011

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

Word Count: 2271

Document Preview

September Assigned: 9, 2011 Fall 2011 Due: September 16, 2011 E7 Laboratory Assignment 3 The purpose of this lab is to introduce the creation and manipulation of two-dimensional arrays and some built-in polynomial operations. 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....

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.
September Assigned: 9, 2011 Fall 2011 Due: September 16, 2011 E7 Laboratory Assignment 3 The purpose of this lab is to introduce the creation and manipulation of two-dimensional arrays and some built-in polynomial operations. 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. You must use the clear;format compact command at the beginning of your script to clear the variables from the base workspace and format appropriately to reduce the length of the output. You must turn in a printed copy to the homework boxes in room 1109 Etcheverry. 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 September 16, 2011. Your m-le, which is used to generate the HTML document must also be uploaded to bSpace (under the Assignments tab), also by noon on September 16, 2011. Please have your full name, student ID number, and lab section number at the head of the le. Also, please name this le lastname middlename firstname lab03.m. 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: Command/syntax exploration 1. The isequal function compares two arrays to see if they are exactly equal. It returns a logical value 1 (representing true) if the two arrays are equal, and a logical value 0 (representing false) if not. Run the following lines of code and explain what each command does with a short sentence. begin code 1 2 3 4 5 6 7 8 9 10 11 TF = isequal(3, 50) class(TF) isequal(2.3,2.3) isequal([2], 2) isequal([[[9.6]]], 9.6) A = [2 3 5; -2 1 7]; B = [2 3 5; -2 1 7]; C = [2 -2 3 1 5 7]; isequal(A, B) isequal(A, C) isequal([41 41], 41) end code 2. Creating special arrays: Run the following lines of code and explain what each command does with a short sentence. 1 of 9 Assigned: September 9, 2011 Fall 2011 Due: September 16, 2011 begin code 1 2 3 4 5 6 7 8 9 10 ones(2,3) ones(1,5) ones(4) zeros(3) zeros(1,3) zeros(2,3) true(1,3) isequal(true(1,3), ones(1,3)) class(true(1,3)) class(ones(1,3)) end code 3. (a) The rand function generates a random number between 0 and 1. Run the following lines of code and explain what each command does with a short sentence. begin code 1 2 3 4 5 6 7 rand(2, 5) rand(1, 6) rand(3) round(40*rand(1,6)) rvals = rand(1, 20); plot(1:20, rvals, o) plot(1:100,sort(rand(100,1))) end code (b) Look at the help function for rand and then use the rand function in order to generate a 1 7 array of random numbers between -1 and 0.5. (c) In a real program, the value of the upper and lower bounds will most likely be stored in variables. For some general variables L and U, write a comment that explains how to generate a 1 N array of random numbers whose values are between L and U. (d) Assign L = 3.5, U = 6.1, and N = 20. Generate a 1 N array of random numbers between L and U. Do this with one line. The line should only consist of the variables L, U, N, the function rand, and the appropriate arithmetic. 4. Elementwise Binary operations on arrays: Dene the two arrays: A = 769 381 and 241 . Run the following lines of code and explain what each command does with a 487 short sentence. begin code B= 1 2 3 4 5 6 A + 1.1 A+B (A - B)/2 1./A A.*B A./B 2 of 9 Assigned: September 9, 2011 7 8 Fall 2011 Due: September 16, 2011 A.^B A.^2 end code 5. Size and Number of elements: Run the following lines of code and explain what each command does with a short sentence. begin code 1 2 3 4 5 6 M = rand(13,5); szM = size(M) [rsM, csM] = size(M) sM1 = size(M, 1) sM2 = size(M, 2) numel(M) end code 6. Replicating arrays: Run the following lines of code and explain what each command does with a short sentence. begin code 1 2 3 4 5 repmat(2.7, [4 2]) B = [3; 2; -6]; repmat(B, [1 5]) A = [2 5; 0 -9; 11 13]; repmat(A, [2 3]) end code 7. Challenge Problem: A row array R = [r1 r2 rn ] and a scalar variable P are given. The value of P is a nonnegative integer. Write a one-line command, which nests several commands (introduced earlier in this section) to produce the (1 + P ) n array 1 1 1 r1 r2 rn 2 2 2 V = r1 r2 rn . . .. . . . . . . . . P P P r1 r2 rn Demonstrate the correctness of your command by applying it to the following for values of R and P: R = [1.2 -0.9 2 -1 0.5 3] and P = 3. Part B: Reference and Assignment in Arrays 8. Run the following lines of code and explain what each command does with a short sentence. begin code 1 2 3 a = [10 21 45 33;65 71 18 41;51 63 88 37] a(1,1) a(1,2) 3 of 9 Assigned: September 9, 2011 Fall 2011 a(3,2) a(1,:) a(:,2) a(1) a(4) a(2,2) = 8 a(4:6) = [1 2 3] a(1:2,1:2) = [1 1;1 1] a = [10 21 45 33;65 71 18 41;51 63 88 37]; a([2 3],[1 2]) a([2 3 2 2],[1 2]) a([2 3],[1 2]) = rand(2,2) end code 4 5 6 7 8 9 10 11 12 13 14 15 9. Dene the matrix Due: September 16, 2011 % redefine a 1234 A= 5 6 7 8 9 10 11 12 . Use linear indexing, (row,column) indexing and transpose as necessary in solving this problem. IMPORTANT: In each of the following subproblems, you can make only one reference to the variable A. (a) Extract the entry in the 3rd row, 2nd column using (row,column) indexing. (b) Extract the entry in the 2nd row, 4th column using linear indexing. (c) Extract 67 10 11 (d) Extract 12 4 91 (e) Extract 555 555 from matrix A using (row,column) indexing. from matrix A. from matrix A using (row,column) indexing. (f) Assign the value 6 to the 1st row, 2nd column of A using (row,column) indexing. (g) Assign the value 6 to the 2nd row, 4th column of A using linear indexing. (h) Assign the values [9 10 11 12] to the 2nd row of A. 1234 (i) Redene A to be 5 6 7 8 . Extract the values [2 6 10] from A using linear 9 10 11 12 indexing. 4 of 9 Assigned: September 9, 2011 (j) Extract the matrix Fall 2011 3 11 74 Due: September 16, 2011 from A. (k) Extract the array that consists of A, without the rst row or column. (l) Assign the value 14 to all entries in the rst column of A. (m) Assign the value [2 15 6 19] to the rst row of A. Part C: Command behavior exploration 10. Run the following lines of code and explain what each command does with a short sentence. begin code 1 2 3 4 5 6 A = zeros(6,6); A(1:7:36) = 10:10:60 B = 10:10:60 diag(B) C = rand(4, 5) diag(C) end code 11. (a) Create the array A = [3 7 5 6 4 4 2 11 9]. Run the following lines of code and explain what each command does with a short begin code sentence. 1 2 3 4 5 6 7 8 9 min(A) [minValA, idxA] = min(A) A(idxA) isequal(minValA, A(idxA)) B = A max(B) [maxValB, idxB] = max(B) A = rand(1000000,1); [min(A) max(A)] end code (b) Dene the arrays A = [3 4 5 7 2; 2 1 2 3 4; 2 9 8 2 3] and B = [2 1 2 7 9; 9 3 7 2 8; 9 3 2 1 8]. Run the following lines of code and explain what each command does with a short sentence. begin code 1 2 3 4 5 6 7 min(A) min(A,B) min(A,2.7) min(A) min(A,[],1) min(A,[],2) min(min(A)) end code 5 of 9 Assigned: September 9, 2011 Fall 2011 Due: September 16, 2011 12. Other (a) functions. Run the following lines of code and explain what each command does with a short sentence. Some lines might produce an error (deliberate, on our part). begin code 1 2 3 4 5 6 7 8 9 A = [2 3 5 2 1 6] B = [3; 5; 6; 3] sum(A) sum(B) cumsum(A) cumsum(B) prod(A) cumprod(A) diff(A) end code (b) Run the following lines of code and explain what each command does with a short sentence. begin code 1 2 3 4 5 6 7 A = [3 5 2; 8 2 9] sum(A) sum(A,1) sum(A,2) prod(A) cumsum(A,1) cumprod(A,2) end code 13. (a) Run the following lines of code and explain what each command does with a short sentence. begin code 1 2 3 4 5 6 A = [3.4 4 3.6 2.1 5 2.8 1]; sort(A) [sA, idx] = sort(A) size(sA) size(idx) isequal(A(idx), sA) end code (b) Run the following lines of code and explain what each command does with a short sentence. begin code A = round(30*rand(3, 4)) [sA, sidx] = sort(A) 3 [sA1, sidx1] = sort(A,1) 4 [sA2, sidx2] = sort(A,2) 5 isequal(sA, sA1) 6 isequal(sA, sA2) 7 col = 3 8 isequal(sA1(:, col), A(sidx1(:, col), col)) 9 row = 2 10 isequal(sA2(row, :), A(row, sidx2(row, :))) end code (c) A group of scientists are studying a pack of seven wolves. Below is a table containing an identication number and the mass, in kilograms, for each wolf. 1 2 6 of 9 Assigned: September 9, 2011 Fall 2011 IDNumber Mass (kg) 11 36.5 3 34 Due: September 16, 2011 25 38.3 14 36.7 2 37.5 36 35.5 17 34.5 i. Create a 2 7 array, WolfData, whose rst row is the IDNumber of the wolves, and second row is the mass. Please be sure to enter the data correctly. ii. Using WolfData, create an array, G (same size as WolfData), by taking WolfData and sorting all of the IDNumbers in ascending order, and rearranging the masses accordingly. iii. Using WolfData, create an array, F (same size as WolfData), by taking WolfData and sorting the masses in ascending order, and rearranging the IDNumbers accordingly. iv. With one line of code, operating on F, what is the IDNumber of the most massive wolf? Part D: Practical Application problem 14. In a class of 10 students, the student-IDs and end of the semester scores for physics, math and dance are as given below Student ID Physics scores Math scores Dance scores 32 87 65 10 16 90 55 55 28 55 68 30 14 32 50 56 3 68 80 72 36 72 71 44 31 41 65 88 19 99 95 23 7 60 50 45 26 58 78 66 Table 1: Scores obtained by each student Download the data-le Assignment3Data.mat. It is at BSpace, as an Additional Resource for Assignment 3. Save the le into the current working directory (run >> pwd in Matlab to see what that directory is). Load the data contained in the le into your workspace using begin code 1 load(Assignment3Data) end code This should load two variables, Scores and Weights. The 4 10 array Scores contains in its rst row the student IDs and the corresponding Physics, Math and Dance grades (shown in table 1 above) in its subsequent rows. The 4 10 array Weights is used in part 14f. (a) Using Scores, write a one-line command that creates a 3 1 array MaX that contains the maximum scores in math, physics and dance respectively in rows 1, 2 and 3. Your solution should not depend on you knowing that there are 10 students. The command you write should work for any Scores array, as long it is 4 N , where the meaning of each row is as above, and N is the number of students. (b) Using Scores, write a one-line command that creates a 3 1 array AvG that contains the average scores in math, physics and dance respectively in rows 1, 2 and 3. The average of n numbers x1 , x2 , , xn is given by x = n n xi = x1 +x2 ++xn . Your solution should not 1 i=1 n depend on you knowing that there are 10 students. The command you write should work for any Scores array, as long it is 4 N , where the meaning of each row is as above, and N is the number of students. 7 of 9 Assigned: September 9, 2011 Fall 2011 Due: September 16, 2011 (c) The instructor has declared that Physics carries a 30% weight, Math carries a 30% weight and Dance carries a 40% weight. Write a one-line command that creates a 2 10 array GpA, which has in its rst row the student IDs and in its second row the corresponding weighted average of the subjects for each student. For example, the weighted average of the rst student is computed as 0.30 87 + 0.30 65 + 0.40 10. (d) Using the array GpA, write two lines of Matlab instructions to create the 2 5 array ToP that contains in its rst row the student IDs of the students with the top 5 weighted averages and in its second row their corresponding weighted averages in descending order. (Hint: use the sort command.) Your solution should not depend on you knowing that there are 10 students (just that there are at least 5). (e) One might assume that the students that are good in science are not good dancers. Create an array named science that has the average of the Physics and Math scores for each student, and an array named art that has the score for Dance for each student. Plot the scores using the command plot(science,art,o). Looking at this plot, what can you say about the assumption that was made above? (f) The students were given a survey at the beginning of the semester asking what weights they would choose for the subjects, if they were the instructors. The weights (as percentages) preferred by each of the students are shown in the table below and are also contained in the array Weights, which was previously loaded. Student ID preferred Physics weight preferred Math weight preferred Dance weight 32 18 21 61 16 34 24 42 28 17 43 40 14 39 40 21 3 32 30 38 36 37 39 24 31 40 39 21 19 20 32 48 7 31 43 26 26 43 24 33 Table 2: Subject weights as chosen by each student Write a one-line command that creates a 2 10 array sGpA, which has in its rst row the student IDs and in its second row the corresponding weighted average of the subjects for each student, using the students chosen weights. For example, the weighted average of the rst student is computed as 0.18 87 + 0.21 65 + 0.61 10. Part E: Polynomials 15. Perform the following polynomial operations by representing polynomials as row vectors. The entries in the row vectors are the coecients. For example, the vector [3 4 2 1] corresponds to the polynomial 3x3 +4x2 +2x +1. Use the functions polyval, roots, poly, conv, polyder and deconv to obtain a solution when necessary. (a) Add the polynomials p1 (x) = 2x2 + 4 and p2 (x) = 4x2 + 5x + 2. (b) Add the polynomials p3 (x) = x3 + 3x2 + 3x 4 and p4 (x) = x2 + 2x + 3. (c) Multiply the polynomials p5 (x) = x4 + 3x3 + 4 and p6 (x) = 2x4 + 2x3 5x2 + 3x. (d) Determine the quotient and the remainder that result from dividing the polynomial p7 (x) = x2 + 4x + 3 by the polynomial p8 (x) = x + 3. 8 of 9 Assigned: September 9, 2011 Fall 2011 Due: September 16, 2011 (e) Using a single command, evaluate the polynomial p9 (x) = 4x3 + 3x + 4 at x = -2, -1, 0, 1, 2. (f) Find the roots of the polynomial x6 18x5 + 130x4 480x3 + 949x2 942x + 360. (g) Consider the polynomial 1 7 p(x) = x4 + x3 + 7x2 + 8x + 2. 4 3 Let q denote the derivative of p. Find q , and nd the roots of q . On a single plot, plot a graph of p(x) versus x (for x in the interval [-5, 1]). The graph should also include red markers (use o) at all of the critical points (places where the derivative is 0) of p. 9 of 9
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 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
Delaware - MATH - 242
Math 242, Sections 010 and 011, Spring 2012Suggested discussion problems, Tuesday February 14th1. Evaluate the limit.x sin xx0 x tan xlim2. Evaluate the limit.lim x+xx03. Find the area bounded by the curves y = |x| and y = x2 2.4. Let A be the