Question

In: Economics

A student must study for two exams: Class A and Class B. Happiness is determined by...

A student must study for two exams: Class A and Class B. Happiness is determined by the sum of the two grades. The student has 600 minutes to spend (as denoted by m) . If there is no studying, the student can get 50 grade points on each of the exams. In order to get one additional point on Class A, the student has to spend p1 = 30 minutes. On the other hand, in order to get one additional point on Class B, the student has to spend p2 = 20 minutes.

1) What would be the utility function that represents the preferences over grade points on Class A and Class B.

2) What would be the optimal amount of time for the student to choose to spend on Class A and Class B? How many grade points would the student get in each class?

3) Now, if it only takes 15 minutes to get an additional point in Class A, what would be the optimal amount of time for the student to choose to spend on Class A and Class B.

Solutions

Expert Solution

1) Happiness is determined by the sum of two grades

i.e., Hapiniess = utility = marks in class A + marks in class B

= > utility = (xA +50) + (xB + 50)....{Note that even when there is no studying the student does secure 50 marks in each of the classes}

= > utility = xA + xB + 100

= > utility - 100 = xA + xB.(monotonic transformation)

= > U = xA + xB

Hence , the above utility function defines the preferences over grade points on class Aand class B.

2) Now the time constraint or the budget constraint here given that total time available to be devoted to studying =600:-

600 = 30xA + 20xB

= > 60 = 3xA + 2xB

[Since , here time spent is securing each additional marks in each class is the price paid for each additional marks.]

Now , note in the figure the black lines are the indifference curves and the red line is our budget constarint,

the highest utiltiy achieved by such indifference curves are generally at either of the corner points, In this the equilibrium lies on the vertical axis at xA=0, xB = 30

  

Mathematically, since xA and Xb are perfect subtitutes hence, in the equilbrium we are to obtain a corner slution that is either xA= 0 = > xB =30 = > utiltiy = 30

Or xB = 0 = > xA = 20 (from the budget equation) = > utility = 20

Since, the first case yields higher utility hence that is our solution here.

Thus, Note when we are solving for perfect substitutes utility function ; the good(class) for which the price (additional time spent )is lesser relatively , that good (class ) is allocated all the income(time) .

Thus optimal time in class A = 0 ; Class B = 600 minutes

3) hence when the time devoted to score additional marks in class A drops to 15 minutes now less than what is required for in class B = 20minutes;

The new budget line being :- 600 = 15xA + 20 xB

=> 60 = 1.5xA + 2xB.

Obviously the consumption point (equilbrium) shall shift to the other corner, and no amount of extra time shall be devoted to class B rather

600 minutes of additional studying shall be done for class A now. .


Related Solutions

Student folklore holds that answer b is very often the correct one in conventional multiple-choice exams,...
Student folklore holds that answer b is very often the correct one in conventional multiple-choice exams, where each question has five possible answers. To test whether this belief holds for certain instructors, the students plan to examine the next 20 multiple-choice questions asked by the instructor. Isthebinomialapproachtheappropriateinthisinstance?In other words, would the binomial assumptions be reasonable in this situation? Assumingthatonlyoneanswertoanyquestionisregardedascorrect, what is the natural null hypothesis to be tested? Should the research hypothesis one-sided or two-sided?
Using Python Define a Student class. A Student class needs to have two attributes, the student_name...
Using Python Define a Student class. A Student class needs to have two attributes, the student_name and strudent_grade . It also has three methods as follows: set_grade(grade) that sets the grade of the student. get_grade returns the grade of the student. print_student_info that print the name and grade of student in a formatted string. In the math_utils.py file define a function called average_grade(roster) . This method accepts as input a list of Student Objects and returns the average of the...
World Happiness In a recent study on world happiness, participants were asked to evaluate their current...
World Happiness In a recent study on world happiness, participants were asked to evaluate their current lives on a scale from 0 to 10, where 0 represents the worst possible life and 10 represents the best possible life. The responses were normally distributed, with a mean of 5.4 and a standard deviation of 2.2. Find the probability that a randomly selected study participant’s response was (a) less than 4, (b) between 4 and 6, and (c) more than 8. Identify...
1.The concentration of the diluted solution determined in part b and in part c must be...
1.The concentration of the diluted solution determined in part b and in part c must be equal. how do the values obtained compare? explain part b: preparation of a dilution solution standard solution volume used: 10.00 mL final volume of the solution: 25.00 mL concentration of the standard solution: 0.800 mol/L part c: experimental determination of the concentration of the diluted solution dough test tube with residue: 46.19g dough test tube empty: 47.42g volumen of solution used: 3.00mL or 0.003L...
Suppose a student organization at the University of Illinois collected data for a study involving class...
Suppose a student organization at the University of Illinois collected data for a study involving class sizes from different departments. A random sample of 11 classes in the business department had an average size of 38.1 students with a sample standard deviation of 10.6 students. A random sample of 12 classes in the engineering department had an average size of 32.6 students with a sample standard deviation of 13.2 students a. Perform a hypothesis test using a = 0.05 to...
Language C++ Student-Report Card Generator: create a class called student and class called course. student class...
Language C++ Student-Report Card Generator: create a class called student and class called course. student class this class should contain the following private data types: - name (string) - id number (string) - email (s) - phone number (string) - number of courses (int) - a dynamic array of course objects. the user will specify how many courses are there in the array. the following are public members of the student class: - default constructor (in this constructor, prompt the...
Write two classes Class A and Class B in class A you should read from the...
Write two classes Class A and Class B in class A you should read from the keyboard a number and you should call a public method of the class B that will print on the screen whether the number that was read from the keyboard in class A is multiple of 7 and has the last digit 5.
Students are to observe two or more adults unknown to the observer. The student must not...
Students are to observe two or more adults unknown to the observer. The student must not be able to hear the subjects being observed and those being observed must not be wearing a uniform of any kind as this would provide information about their occupation to the observer. Students must describe the environment and the people being observed, i.e., age, gender, dress, etc. Discuss the nonverbal communication, i.e. eye contact, body position and any other nonverbal behavior. Provide your interpretation...
***Given a class called Student and a class called Course that contains an ArrayList of Student....
***Given a class called Student and a class called Course that contains an ArrayList of Student. Write a method called dropStudent() as described below. Refer to Student.java below to learn what methods are available.*** Course.java import java.util.*; import java.io.*; /****************************************************** * A list of students in a course *****************************************************/ public class Course{ /** collection of Students */ private ArrayList<Student> roster; /***************************************************** Constructor for objects of class Course *****************************************************/ public Course(){ roster = new ArrayList<Student>(); } /***************************************************** Remove student with the...
A student in a noon calculus class is watching two bugs near the center of a...
A student in a noon calculus class is watching two bugs near the center of a wall. One is an ant and the other is a beetle. At noon, the ant is 180 cm directly to the left of the beetle. The ant is crawling right at 30 cm/h and the beetle is crawling up at 45 cm/h. How fast is the distance between the bugs changing at 2:00 PM? Answer with an exact value. cm/h?
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT