Try the fastest way to create flashcards

Related questions with answers

In a course, a teacher gives the following tests and assignments: - A lab activity that is observed by the teacher and assigned a numeric score. - A pass/fail exam that has 10 questions. The minimum passing score is 70. - An essay that is assigned a numeric score. - A final exam that has 50 questions. Write a class named CourseGrades. The class should have a member named grades that is an array of GradedActivity pointers. The grades array should have four elements, one for each of the assignments previously described. The class should have the following member functions: setLab: This function should accept the address of a GradedActivity object as its argument. This object should already hold the student’s score for the lab activity. Element 0 of the grades array should reference this object. setPassFailExam: This function should accept the address of a PassFailExam object as its argument. This object should already hold the student’s score for the pass/fail exam. Element 1 of the grades array should reference this object. setEssay: This function should accept the address of an Essay object as its argument. (See Programming Challenge 6 for the Essay class. If you have not completed Programming Challenge 6, use a GradedActivity object instead.) This object should already hold the student’s score for the essay. Element 2 of the grades array should reference this object. setPassFailExam: This function should accept the address of a FinalExam object as its argument. This object should already hold the student’s score for the final exam. Element 3 of the grades array should reference this object. print: This function should display the numeric scores and grades for each element in the grades array. Demonstrate the class in a program.

Question

Verify Green’s theorem for the given vector field F=M(x,y)i+N(x,y)j\mathbf{F}=M(x, y) \mathbf{i}+N(x, y) \mathbf{j} and region D by calculating both DMdx+Ndy\oint_{\partial D} M d x+N d y and D(NxMy)dA.\iint_{D}\left(N_{x}-M_{y}\right) d A. F=(x2y)i+(x+y2)j\mathbf{F}=\left(x^{2}-y\right) \mathbf{i}+\left(x+y^{2}\right) \mathbf{j} is the rectangle bounded by x = 0, x = 2, y = 0, and y = 1.

Solution

Verified
Step 1
1 of 4

Try graphing the rectangle, where A(0,0),  B(2,0),  C(1,2),and  D(0,1)A(0,0), \; B(2,0), \; C(1,2), and \; D(0,1):

\centering AB:\color{#4257b2}{A\rightarrow B:}   y=0,  dy=0,  x=0  to  2\; y=0, \; dy=0, \; x=0 \; to \; 2

\centering BC:\color{#4257b2}{B\rightarrow C}:   x=2,  dx=0,  y=0  to  1\; x=2, \; dx=0, \; y=0 \; to \; 1

\centering CD:\color{#4257b2}{C\rightarrow D}:   y=1,  dy=0,  x=2  to  0\; y=1, \; dy=0, \; x=2 \; to \; 0

\centering DA:\color{#4257b2}{D\rightarrow A}:   x=0,  dx=0,  y=1  to  0\; x=0, \; dx=0, \; y=1 \; to \; 0

Create a free account to view solutions

Create a free account to view solutions

Recommended textbook solutions

Thomas' Calculus 14th Edition by Christopher E Heil, Joel R. Hass, Maurice D. Weir

Thomas' Calculus

14th EditionISBN: 9780134438986 (11 more)Christopher E Heil, Joel R. Hass, Maurice D. Weir
10,142 solutions
Vector Calculus 4th Edition by Susan J. Colley

Vector Calculus

4th EditionISBN: 9780321780652 (3 more)Susan J. Colley
1,866 solutions
Calculus: Early Transcendentals 8th Edition by James Stewart

Calculus: Early Transcendentals

8th EditionISBN: 9781285741550 (4 more)James Stewart
11,085 solutions
Calculus: Early Transcendentals 9th Edition by Daniel K. Clegg, James Stewart, Saleem Watson

Calculus: Early Transcendentals

9th EditionISBN: 9781337613927 (1 more)Daniel K. Clegg, James Stewart, Saleem Watson
11,049 solutions

More related questions

1/4

1/7