micro-economics
v1.0.1
Published
Tool for making firm-level economics quick and easy
Downloads
13
Maintainers
Readme
micro-economics
Node Module for Calculating Firm-Level Economics
Usage:
- Npm install micro-economics
- Require in your .js file
var firm = require('micro-economics');
Library Contains Methods For:
Average Total Cost
firm.averageTotalCost(totalCost, quantity);
Average Variable Cost
firm.averageVariableCost(totalVAriableCost, quantity);
Fixed Cost
firm.fixedCost(averageTotalCost, averageVariableCost);
Total Cost
firm.totalCost(averageVariableCost, averageFixedCost, quantity);
Total Variable Cost
firm.totalVariableCost(averageVariableCost, averageFixedCost, quantity);
Total Fixed Cost
firm.totalFixedCost(tocalCost, totalVariabelCost);
Marginal Cost
firm.marginalCost(totalCost1, totalCost2, output1, output2);
Marginal Product
firm.marginalProduct(totalProduct1, totalProduct2, varFactor1, varFActor2);
Marginal Revenue
firm.marginalRevenuet(totalRevenue1, totalRevenue2, output1, output2);
Average Product
firm.averageProduct(totalProduct, varFactor);
Total Revenue
firm.totalRevenue(price, quantity);
Average Revenue
firm.totalVariableCost(averageVariableCost, averageFixedCost, quanitity);
Total Product
firm.totalVariableCost(averageVariableCost, averageFixedCost, quanitity);
Glossary:
- Average Total Cost (ATC) = Total Cost / Q (Output is quantity produced or ‘Q’)
- Average Variable Cost (AVC) = Total Variable Cost / QAverage
- Fixed Cost (AFC) = ATC – AVC
- Total Cost (TC) = (AVC + AFC) X Output (Which is Q)
- Total Variable Cost (TVC) = AVC X Output
- Total Fixed Cost (TFC) = TC – TVC
- Marginal Cost (MC) = Change in Total Costs / Change in Output
- Marginal Product (MP) = Change in Total Product / Change in Variable Factor
- Marginal Revenue (MR) = Change in Total Revenue / Change in Q
- Average Product (AP) = TP / Variable Factor
- Total Revenue (TR) = Price X Quantity
- Average Revenue (AR) = TR / Output
- Total Product (TP) = AP X Variable Factor
- Average Product (AP) = TP / Variable Factor