{ "cells": [ { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "%matplotlib inline\n", "import matplotlib.pyplot as plt\n", "import numpy as np\n", "import pandas as pd\n", "import seaborn as sns" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "**Know and be able to**:\n", "\n", "- Use summation formulas to evaluate finite sums\n", "- Use summations to determine the *mean, variance,* and *standard deviation* of data\n", "- Use Riemann sums to approximate area under a curve and between curves\n", "- Understand and use the definition of the definite integral\n", "- Use definite integral to find area beneath a curve, area between curves, and to find the volume of solids of revolution\n", "- Understand and Use the **Net Change Theorem**\n", "- Use the Definite Integral to determine the Gini Index given information on wealth distribution" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "1. Find the area of the region bounded by the curves:\n", "\n", "- $y = x^2 \\quad \\text{and} \\quad y = 4x - x^2$\n", "- $y = \\frac{1}{x}, y = x^2, y = 0, x = e$" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "2. Find the volume of the solid formed in the first quadrant by the line $y = 2\\sqrt{x}$ and the line $y = 6$.\n", "- Draw a plot of the region\n", "- Find the area of the region\n", "- Write but do not evaluate an expression for the volume of the solid formed by rotating the region about the $x$-axis." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "3. Find a Riemann sum using 4 rectangles for the given function on the said interval.\n", "\n", "- $y = 3x^2 - 2x + 1$ on $[-1,1]$\n", "- $y = x^2\\sin(x)$ on $[0, \\pi]$" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "4. For the following exercise, consider the stock market crash in 1929 in the United States. The table lists the Dow Jones industrial average per year leading up to the crash.\n", "\n", "|Years after 1920 |Value ($)|\n", "| ---------- | --------- |\n", "|1 |63.90| \n", "|3 |100 |\n", "|5 |110 |\n", "|7 |160 |\n", "|9 |381.17|\n", "\n", "- What was the average value of the stock?\n", "- The variance?\n", "- Standard Deviation?" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "5. The image below represents the height of rectangles in 3D. Use the heights to determine the volume of the solid.\n", "\n", "
\n",
"