Ti-84 Programs to Put Into Your Calculator for Microecon
This guide provides essential TI-84 programs for microeconomics students. Whether you're calculating supply and demand curves, elasticity, or surplus, these programs will help you analyze market behavior efficiently.
Introduction
The TI-84 calculator is a powerful tool for microeconomics students. With the right programs, you can quickly analyze market behavior, calculate elasticities, and determine consumer and producer surplus. This guide provides step-by-step instructions for programming your TI-84 for common microeconomic calculations.
Before you begin, make sure your calculator is in the correct mode. For most microeconomic calculations, you'll want to use the standard mode with decimal notation.
Supply and Demand Programs
Understanding supply and demand curves is fundamental to microeconomics. Here's how to program your TI-84 to calculate and graph these relationships.
Programming the Demand Curve
To program the demand curve, follow these steps:
- Press the [PRGM] key and select [NEW].
- Name the program "DEMAND" and press [ENTER].
- Enter the following code:
:"Enter price (P):" Input P :"Enter quantity demanded (Qd):" Input Qd :"Demand equation: Qd = a - bP" :"Enter a:" Input a :"Enter b:" Input b :"Demand curve: Qd = " + string(a) + " - " + string(b) + "P" Pause ClrDraw PlotsOn AxisOn Line(0, a, 10, a - b*10) Pause
This program will prompt you to enter a price and quantity demanded, then calculate the demand curve equation and graph it.
Programming the Supply Curve
Similarly, you can program the supply curve:
- Press the [PRGM] key and select [NEW].
- Name the program "SUPPLY" and press [ENTER].
- Enter the following code:
:"Enter price (P):" Input P :"Enter quantity supplied (Qs):" Input Qs :"Supply equation: Qs = c + dP" :"Enter c:" Input c :"Enter d:" Input d :"Supply curve: Qs = " + string(c) + " + " + string(d) + "P" Pause ClrDraw PlotsOn AxisOn Line(0, c, 10, c + d*10) Pause
This program calculates the supply curve equation and graphs it alongside the demand curve for comparison.
Elasticity Calculations
Price elasticity of demand measures how sensitive quantity demanded is to changes in price. Here's how to calculate it on your TI-84.
Programming Price Elasticity of Demand
Follow these steps to create an elasticity calculator:
- Press the [PRGM] key and select [NEW].
- Name the program "ELASTICITY" and press [ENTER].
- Enter the following code:
:"Price Elasticity of Demand" :"Enter initial price (P1):" Input P1 :"Enter initial quantity (Q1):" Input Q1 :"Enter new price (P2):" Input P2 :"Enter new quantity (Q2):" Input Q2 :"Price elasticity = % change in Q / % change in P" :"% change in Q = (Q2 - Q1)/((Q1 + Q2)/2)" :"% change in P = (P2 - P1)/((P1 + P2)/2)" E = ((Q2 - Q1)/((Q1 + Q2)/2)) / ((P2 - P1)/((P1 + P2)/2)) :"Elasticity = " + string(E) Pause
This program calculates the price elasticity of demand based on initial and new price-quantity pairs.
Remember that elasticity values can be interpreted as:
- Elastic (|E| > 1): Demand is very responsive to price changes
- Unit elastic (|E| = 1): Demand responds equally to price changes
- Inelastic (|E| < 1): Demand is not very responsive to price changes
Consumer Surplus
Consumer surplus measures the difference between what consumers are willing to pay and what they actually pay. Here's how to calculate it on your TI-84.
Programming Consumer Surplus
Follow these steps to create a consumer surplus calculator:
- Press the [PRGM] key and select [NEW].
- Name the program "CSURPLUS" and press [ENTER].
- Enter the following code:
:"Consumer Surplus Calculator" :"Enter equilibrium price (P):" Input P :"Enter equilibrium quantity (Q):" Input Q :"Enter maximum price consumers are willing to pay (Pmax):" Input Pmax :"Consumer surplus = (Pmax - P) * Q / 2" CS = (Pmax - P) * Q / 2 :"Consumer surplus = " + string(CS) Pause
This program calculates the area between the demand curve and the price consumers are willing to pay, representing consumer surplus.
Producer Surplus
Producer surplus measures the difference between what producers receive and what they are willing to accept. Here's how to calculate it on your TI-84.
Programming Producer Surplus
Follow these steps to create a producer surplus calculator:
- Press the [PRGM] key and select [NEW].
- Name the program "PSURPLUS" and press [ENTER].
- Enter the following code:
:"Producer Surplus Calculator" :"Enter equilibrium price (P):" Input P :"Enter equilibrium quantity (Q):" Input Q :"Enter minimum price producers are willing to accept (Pmin):" Input Pmin :"Producer surplus = (P - Pmin) * Q / 2" PS = (P - Pmin) * Q / 2 :"Producer surplus = " + string(PS) Pause
This program calculates the area between the supply curve and the price producers are willing to accept, representing producer surplus.