Imperfect CompetitionMicroeconomicsPlease answer this multiple choice questionsQ1. The allocatively efficient quantity of product Z for the whole market is 2 million units. At that quantity, the demand for Z is at $5 and the average total cost for its single supplier is $7. The average total cost does not fall to $5 until 3.5 million units. Based on this data, the market for product Z isANSWER CHOICESA. operating with decreasing returns to scaleB. a natural monopolyC. a legal monopolyD. monopolistically competitiveE. productively efficientQ2.Use the graph to answer the question that follows.What would be the area of this firm’s economic profits or economic losses?A. P1, M, G, P3 in profitsB. P1, M, G, P3 in lossesC. P1, M, N, P2 in profitsD. P1, M, N, P2 in lossesE. P2, N, G, P3 in profitsQ3. If a monopolist begins to engage in perfect price discrimination where previously it charged a single price for all its customers, what would be true of its production figures?A. Firm produces more; producer surplus increases; deadweight loss increasesB. Firm produces less; charges higher price; economic surplus decreasesC. Firm produces more; total economic surplus increases; consumer surplus disappearsD. Firm loses allocative efficiency; charges lower price; deadweight loss decreasesE. Firm reaches allocative efficiency; producer surplus decreases; consumer surplus increasesQ4. Patricia owns a cleaning business with Sarah. They both have other jobs and are trying to determine the number of hours to work at the cleaning business. The following payoff matrix shows their daily incomes depending on the number of hours they work at the cleaning business.SARAHFULL TIME PART TIMEPATRICIA FULL TIME $60, $60 $50, $80PART TIME $80, $50 $55, $55Which of the following accurately describes the payoff matrix above?A. Neither Patricia nor Sarah have a dominant strategy.B. Patricia has a dominant strategy to work full-time, and Sarah has no dominant strategy.C. Sarah has a dominant strategy to work full-time, and Patricia has no dominant strategy.D. Patricia and Sarah both have a dominant strategy to work full time.E. Patricia and Sarah both have a dominant strategy to work part time.Q5. Which of the following accurately describes a monopolistically competitive market?A. Barriers to entry or exit secure firms’ long-term economic profits.B. An individual firm’s demand curve is perfectly elastic.C. Firms will earn normal profit in long-run equilibrium.D. Production is inefficient in the short run and efficient in the long run.E. Firms will produce more and charge less than firms in perfect competition.Q6. Nori is a firm that sells products in an industry with a very high concentration of sellers. Nori’s production decisions must consider its competitors’ possible production decisions. In which market must Nori operate?A. Perfect marketB. Monopoly marketC. Oligopoly marketD. Monopsony marketE. Monopolistic competitionQ7. A monopolistically competitive firm is earning positive economic profit. Which of the following must be true?A. The firm is not in long-run equilibrium.B. The firm is not producing where marginal revenue equals marginal cost.C. The firm is receiving a per-unit subsidy.D. The firm is operating with allocative efficiency.E. The firm’s price is the level where marginal revenue equals marginal cost.Q8. Use the graph to answer the question that follows.In monopolistic competition, what area represents the deadweight loss?A. The entire area between Q1 and Q2 up to ATCB. The area between MC and D, from the intersection of MC and D to Q2C. The area between MC and D, from Q1 to the intersection of MC and DD. The area beneath the ATC to the intersection of MC and DE. The area above MR below MC and over to Q2Q9. Which of the following is a way that oligopolists can coordinate to increase individual profits that is illegal in most countries?A. Charging a higher price than their marginal costB. Deliberately producing less than the allocatively efficient quantityC. Conforming to the Prisoner’s Dilemma paradoxD. Fixing their prices and individual output levelsE. Producing near their maximum efficient scalesQ10. Deniques Limited is the only provider of sophisticated medical equipment in Farland. It perceives the demand curve it faces to be the same as the market demand curve. If its demand is represented by P = 100 − 2Q, which of the following is correct about Deniques Limited?A. An increase in the price decreases economic losses.B. A decrease in price decreases the quantity sold.C. A decrease in price increases the quantity sold.D. Higher levels of output bring in increasingly lower total revenue if demand is elastic.E. Maintaining the current price decreases the quantity sold over time.Q11. The minimum efficient scale for a good is beyond the point of output where marginal cost intersects the demand curve. This describesA. diseconomies of scaleB. a legal monopolyC. market powerD. comparative advantageE. a natural monopolyQ12. In an oligopoly market, barriers to entry are and the number of firms is relatively .A. low; lowB. low; highC. high; lowD. high; highE. irrelevant; highQ13. Megan and Martha own competing hair salons that are in the same neighborhood. They are both considering offering their clients discounts in order to increase business. The payoff matrix shows their yearly incomes in thousands of dollars if they offer and do not offer discounts to their customers.MARTHADISCOUNT NO DISCOUNTMEGAN DISCOUNT $50, $75 $75, $60NO DISCOUNT $35, $90 $70, $85If both Megan and Martha did not discount, what would each earn in yearly income?A. Megan would earn $50,000; Martha would earn $75,000.B. Megan would earn $75,000; Martha would earn $60,000.C. Megan would earn $35,000; Martha would earn $90,000.D. Megan would earn $70,000; Martha would earn $85,000.E. Megan would earn $35,000; Martha would earn $85,000.Q14. Company A and Company B are each telecommunications manufacturers. Both companies manufacture the same products, and they make their decisions based on the other’s actions. Both companies are considering opening retail outlets to increase their profits. The payoff matrix shows the profits of the companies in millions of dollars if they choose to open retail outlets.COMPANY BRETAIL OUTLETS NO RETAIL OUTLETSCOMPANY A RETAIL OUTLETS $25, $25 $30, $15NO RETAIL OUTLETS $35, $35 $34, $20The government imposes a new $5 million tax to open retail outlets. What is the expected outcome of the new payoff matrix, given the tax?A. The Nash equilibrium will be that both companies will not open retail stores.B. The Nash equilibrium does not change as a result of the tax.C. Company A’s dominant strategy remains the same, and it will open retail stores.D. Company B’s dominant strategy remains the same, and it will not open retail stores.E. Company A’s dominant strategy changes, and both companies will open retail stores.Q15. The graph below represents the demand graph of a monopolist.The firm uses price discrimination to increase its profits. What is the change in the price level? Assume the firm is acting to maximize profits before and after price discrimination.A. From $8 to $14B. From $14 to $8C. From $14 to $12D. From $8 to demand level at every output quantityE. From $14 to demand level at every output quantity

import java.util.*;

import java.io.*;

public class ElectionSimulator {

    // TODO: Your code here

    public static int minElectoralVotes(List<State> states) {

        int total = 0;

        for (State state : states) {

            total += state.electoralVotes;

        }

        return total / 2 + 1;

    }

    public static int minPopularVotes(Set<State> states) {

        int total = 0;

        for (State state : states) {

            total += state.popularVotes / 2 + 1;

        }

        return total;

    }

    private static class Arguments implements Comparable<Arguments> {

        public final int electoralVotes;

        public final int index;

        public Arguments(int electoralVotes, int index) {

            this.electoralVotes = electoralVotes;

            this.index = index;

        }

        public int compareTo(Arguments other) {

            int cmp = Integer.compare(this.electoralVotes, other.electoralVotes);

            if (cmp == 0) {

                cmp = Integer.compare(this.index, other.index);

            }

            return cmp;

        }

        public boolean equals(Object o) {

            if (this == o) {

                return true;

            } else if (!(o instanceof Arguments)) {

                return false;

            }

            Arguments other = (Arguments) o;

            return this.electoralVotes == other.electoralVotes && this.index == other.index;

        }

        public int hashCode() {

            return Objects.hash(electoralVotes, index);

        }

    }

    public static void main(String[] args) throws FileNotFoundException {

        List<State> states = new ArrayList<>(51);

        try (Scanner input = new Scanner(new File(“data/1828.csv”))) {

            while (input.hasNextLine()) {

                states.add(State.fromCsv(input.nextLine()));

            }

        }

        Set<State> result = new ElectionSimulator(states).simulate();

        System.out.println(result);

        System.out.println(minPopularVotes(result) + ” votes”);

    }

}

Get professional assignment help cheaply

Are you busy and do not have time to handle your assignment? Are you scared that your paper will not make the grade? Do you have responsibilities that may hinder you from turning in your assignment on time? Are you tired and can barely handle your assignment? Are your grades inconsistent?

Whichever your reason may is, it is valid! You can get professional academic help from our service at affordable rates. We have a team of professional academic writers who can handle all your assignments.

Our essay writers are graduates with diplomas, bachelor, masters, Ph.D., and doctorate degrees in various subjects. The minimum requirement to be an essay writer with our essay writing service is to have a college diploma. When assigning your order, we match the paper subject with the area of specialization of the writer.

Why choose our academic writing service?

Plagiarism free papers
Timely delivery
Any deadline
Skilled, Experienced Native English Writers
Subject-relevant academic writer
Adherence to paper instructions
Ability to tackle bulk assignments
Reasonable prices
24/7 Customer Support
Get superb grades consistently

Get Professional Assignment Help Cheaply
Are you busy and do not have time to handle your assignment? Are you scared that your paper will not make the grade? Do you have responsibilities that may hinder you from turning in your assignment on time? Are you tired and can barely handle your assignment? Are your grades inconsistent?
Whichever your reason may is, it is valid! You can get professional academic help from our service at affordable rates. We have a team of professional academic writers who can handle all your assignments.
Our essay writers are graduates with diplomas, bachelor’s, masters, Ph.D., and doctorate degrees in various subjects. The minimum requirement to be an essay writer with our essay writing service is to have a college diploma. When assigning your order, we match the paper subject with the area of specialization of the writer.
Why Choose Our Academic Writing Service?

Plagiarism free papers
Timely delivery
Any deadline
Skilled, Experienced Native English Writers
Subject-relevant academic writer
Adherence to paper instructions
Ability to tackle bulk assignments
Reasonable prices
24/7 Customer Support
Get superb grades consistently

How It Works
1.      Place an order
You fill all the paper instructions in the order form. Make sure you include all the helpful materials so that our academic writers can deliver the perfect paper. It will also help to eliminate unnecessary revisions.
2.      Pay for the order
Proceed to pay for the paper so that it can be assigned to one of our expert academic writers. The paper subject is matched with the writer’s area of specialization.
3.      Track the progress
You communicate with the writer and know about the progress of the paper. The client can ask the writer for drafts of the paper. The client can upload extra material and include additional instructions from the lecturer. Receive a paper.
4.      Download the paper
The paper is sent to your email and uploaded to your personal account. You also get a plagiarism report attached to your paper.

 

PLACE THIS ORDER OR A SIMILAR ORDER WITH Essay fount TODAY AND GET AN AMAZING DISCOUNT

The post Discuss on imperfect competition in microeconomics appeared first on Essay fount.


What Students Are Saying About Us

.......... Customer ID: 12*** | Rating: ⭐⭐⭐⭐⭐
"Honestly, I was afraid to send my paper to you, but you proved you are a trustworthy service. My essay was done in less than a day, and I received a brilliant piece. I didn’t even believe it was my essay at first 🙂 Great job, thank you!"

.......... Customer ID: 11***| Rating: ⭐⭐⭐⭐⭐
"This company is the best there is. They saved me so many times, I cannot even keep count. Now I recommend it to all my friends, and none of them have complained about it. The writers here are excellent."


"Order a custom Paper on Similar Assignment at essayfount.com! No Plagiarism! Enjoy 20% Discount!"