Comprehensive Study Notes on Data Visualization, Coordinate Geometry, and Circle Equations

Single-Variable Data Analysis

  • One-Variable Data Concept:

    • One-variable data consists of a single list of numerical values representing a single characteristic or measurement (for example, points scored by blocks in the 20262026 NBA Finals).
  • Measures of Central Tendency:

    • Mean: The arithmetic average calculated by summing all data points in a set and dividing by the total number of values nn.
    • Median: The middle value of an ordered dataset.
      • When nn is odd, the median is the single central number.
      • When nn is even, the median is calculated as the mean of the two central numbers.
      • Interpretation: The median divides the distribution into two equal halves, meaning 50%50\% of the data points lie at or below the median, and 50%50\% lie at or above it.
  • Example 1: Sleep Duration Dataset:

    • Dataset: 55, 55, 44, 1010, 99, 77.
    • Sample size: n=6n = 6.
    • Mean Calculation:
      • Mean=5+5+4+10+9+76=4066.67\text{Mean} = \frac{5 + 5 + 4 + 10 + 9 + 7}{6} = \frac{40}{6} \approx 6.67
    • Median Calculation:
      • Order the data from smallest to largest: 44, 55, 55, 77, 99, 1010.
      • Since n=6n = 6 is even, locate the two middle entries: 55 and 77
      • Median=5+72=6\text{Median} = \frac{5 + 7}{2} = 6
  • Example 2: Decimal Sample Statistics:

    • Dataset: 3.613.61, 4.34.3, 4.124.12, 4.924.92, 8.828.82, 9.869.86
    • Total sum: 35.6335.63
    • Mean=35.6365.94\text{Mean} = \frac{35.63}{6} \approx 5.94
    • Related radical expression evaluation: 7061.39\frac{\sqrt{70}}{6} \approx 1.39
  • Example 3: Minnesota Low Temperatures:

    • Recorded low temperatures across six nights (in F^\circ\text{F}): 12-12, 4-4, 5-5, 2121, 88, 99
    • Number Line Visualization: Data values are plotted along a single horizontal number line spanning from 30-30 to 3030
    • Extrema:
      • Maximum Value=21F\text{Maximum Value} = 21\,^\circ\text{F}
      • Minimum Value=12F\text{Minimum Value} = -12\,^\circ\text{F}
    • Mean Calculation:
      • Sum=(12)+(4)+(5)+21+8+9=24+45=21\text{Sum} = (-12) + (-4) + (-5) + 21 + 8 + 9 = -24 + 45 = 21
      • Mean=216=3.5F\text{Mean} = \frac{21}{6} = 3.5\,^\circ\text{F}

Relations, Functions, and Two-Variable Data

  • Fundamental Definitions:

    • Relation: A mapping or rule that pairs input values xx with output values yy, represented as a set of ordered pairs (x,y)(x, y).
    • Domain: The set of all possible input values (xx-values). Repeating values are listed only once.
    • Range: The set of all possible output values (yy-values). Repeating values are listed only once.
  • Example 1: Falling Objects Experiment:

    • Experiment tracking height fallen vv (in feet) and time yy (in seconds).
    • Set of ordered pairs (v,y)(v, y): {(20,1.2),(40,1.5),(40,1.6)}\{(20, 1.2), (40, 1.5), (40, 1.6)\}
    • Domain={20,40}\text{Domain} = \{20, 40\}
    • Range={1.2,1.5,1.6}\text{Range} = \{1.2, 1.5, 1.6\}
  • Example 2: Discrete Relation Set SS:

    • Relation definition: S={(5,10),(5,5),(10,5),(10,15),(13,10)}S = \{(5, 10), (5, -5), (-10, 5), (10, 15), (-13, -10)\}
    • Domain={13,10,5,10}\text{Domain} = \{-13, -10, 5, 10\}
    • Range={10,5,5,10,15}\text{Range} = \{-10, -5, 5, 10, 15\}
    • Coordinate Extrema:
      • Xmax=5X_{\text{max}} = 5
      • Xmin=13X_{\text{min}} = -13
      • Ymax=15Y_{\text{max}} = 15
      • Ymin=10Y_{\text{min}} = -10
    • Graph Axis Scale Determination:
      • To display all elements of relation SS effectively, an appropriate coordinate scale spans xx from 20-20 to 2020 and yy from 20-20 to 2020.
      • The scatterplot graphs ordered pairs including (15,10)(15, 10), (15,20)(15, 20), and related data coordinates.

Coordinate Geometry: Midpoint and Distance Formulas

  • The Midpoint Formula:

    • The midpoint MM of a line segment connecting endpoints (x1,y1)(x_1, y_1) and (x2,y2)(x_2, y_2) is found by taking the mean of the xx-coordinates and the mean of the yy-coordinates:
    • M=(x1+x22,y1+y22)M = \left(\frac{x_1 + x_2}{2}, \frac{y_1 + y_2}{2}\right)
    • Example: Find the midpoint of (6,7)(6, -7) and (4,6)(-4, 6).
      • M=(6+(4)2,7+62)=(22,12)=(1,12)M = \left(\frac{6 + (-4)}{2}, \frac{-7 + 6}{2}\right) = \left(\frac{2}{2}, \frac{-1}{2}\right) = \left(1, -\frac{1}{2}\right)
  • Finding an Unknown Endpoint from a Midpoint:

    • Given Midpoint M=(2,6)M = (-2, 6) and Endpoint 1 at (2,4)(2, 4), determine Endpoint 2 (x2,y2)(x_2, y_2).
    • xx-coordinate derivation:
      • 2+x22=2\frac{2 + x_2}{2} = -2
      • 2+x2=4    x2=62 + x_2 = -4 \implies x_2 = -6
    • yy-coordinate derivation:
      • 4+y22=6\frac{4 + y_2}{2} = 6
      • 4+y2=12    y2=84 + y_2 = 12 \implies y_2 = 8
    • Endpoint 2: (6,8)(-6, 8)
  • The Distance Formula:

    • Derived from the Pythagorean theorem a2+b2=d2a^2 + b^2 = d^2, where a=x2x1a = x_2 - x_1 and b=y2y1b = y_2 - y_1:
    • d=(x2x1)2+(y2y1)2d = \sqrt{(x_2 - x_1)^2 + (y_2 - y_1)^2}
    • Example: Calculate the distance between (6,7)(6, -7) and (4,6)(-4, 6).
      • d=(46)2+(6(7))2d = \sqrt{(-4 - 6)^2 + (6 - (-7))^2}
      • d=(10)2+132=100+169=269d = \sqrt{(-10)^2 + 13^2} = \sqrt{100 + 169} = \sqrt{269}
  • Applied Distance Problem 1: Two-Car Kinematics:

    • Scenario: At noon (12:00PM12:00\,\text{PM}), Car A is located 80miles80\,\text{miles} north at (0,80)(0, 80) traveling south at 20mph20\,\text{mph}. Car B is located at (0,0)(0, 0) traveling east at 60mph60\,\text{mph}.
    • Positions at 1:30PM1:30\,\text{PM} (1.5hours1.5\,\text{hours} elapsed):
      • Car B travels east: 1.5hours×60mph=90miles1.5\,\text{hours} \times 60\,\text{mph} = 90\,\text{miles}. Position is (90,0)(90, 0).
      • Car A travels south: 1.5hours×20mph=30miles1.5\,\text{hours} \times 20\,\text{mph} = 30\,\text{miles}. Position drops from (0,80)(0, 80) to (0,50)(0, 50).
    • Distance between Car A and Car B at 1:30PM1:30\,\text{PM}:
      • d=(900)2+(050)2=902+(50)2=8100+2500=10600d = \sqrt{(90 - 0)^2 + (0 - 50)^2} = \sqrt{90^2 + (-50)^2} = \sqrt{8100 + 2500} = \sqrt{10600}
  • Applied Distance Problem 2: Map Distance:

    • Calculate distance between coordinates (40,0)(-40, 0) and (0,50)(0, 50).
    • d=(0(40))2+(500)2=402+502=1600+2500=4100=104164.03milesd = \sqrt{(0 - (-40))^2 + (50 - 0)^2} = \sqrt{40^2 + 50^2} = \sqrt{1600 + 2500} = \sqrt{4100} = 10\sqrt{41} \approx 64.03\,\text{miles}

Equations of Circles in the Coordinate Plane

  • Standard Form Equation of a Circle:

    • (xh)2+(yk)2=r2(x - h)^2 + (y - k)^2 = r^2
    • Center: (h,k)(h, k)
    • Radius: rr
  • Example 1: Center and Radius Identification:

    • Given equation: (x4)2+(y+3)2=16(x - 4)^2 + (y + 3)^2 = 16
    • Rewrite parameters: xh=x4    h=4x - h = x - 4 \implies h = 4, and yk=y(3)    k=3y - k = y - (-3) \implies k = -3
    • Radius: r2=16    r=4r^2 = 16 \implies r = 4
    • Center: (4,3)(4, -3), Radius: r=4r = 4
  • Example 2: Completing the Square for Standard Form:

    • Given equation: x212x+y2+10y=25x^2 - 12x + y^2 + 10y = -25
    • Group variables: (x212x)+(y2+10y)=25(x^2 - 12x) + (y^2 + 10y) = -25
    • Complete square for xx and yy:
      • For xx: (122)2=36\left(\frac{-12}{2}\right)^2 = 36
      • For yy: (102)2=25\left(\frac{10}{2}\right)^2 = 25
    • Add terms to both sides:
      • (x212x+36)+(y2+10y+25)=25+36+25(x^2 - 12x + 36) + (y^2 + 10y + 25) = -25 + 36 + 25
      • (x6)2+(y+5)2=36(x - 6)^2 + (y + 5)^2 = 36
    • Resulting parameters: Center at (6,5)(6, -5), Radius r=36=6r = \sqrt{36} = 6
  • Example 3: Completing the Square with Leading Coefficients:

    • Given equation: 4x2+4x+4y216y19=04x^2 + 4x + 4y^2 - 16y - 19 = 0
    • Divide all terms by 44:
      • x2+x+y24y194=0x^2 + x + y^2 - 4y - \frac{19}{4} = 0
      • x2+x+y24y=194x^2 + x + y^2 - 4y = \frac{19}{4}
    • Complete the square for xx and yy:
      • For xx: (12)2=14\left(\frac{1}{2}\right)^2 = \frac{1}{4}
      • For yy: (42)2=4\left(\frac{-4}{2}\right)^2 = 4
    • Add constants to both sides:
      • (x2+x+14)+(y24y+4)=194+14+4\left(x^2 + x + \frac{1}{4}\right) + (y^2 - 4y + 4) = \frac{19}{4} + \frac{1}{4} + 4
      • Simplify right side: 194+14=204=5\frac{19}{4} + \frac{1}{4} = \frac{20}{4} = 5; 5+4=95 + 4 = 9
    • Standard form equation:
      • (x+12)2+(y2)2=9\left(x + \frac{1}{2}\right)^2 + (y - 2)^2 = 9
    • Resulting parameters: Center at (12,2)\left(-\frac{1}{2}, 2\right) (also noted as (1,2)(-1, 2)), Radius r=9=3r = \sqrt{9} = 3

Plotting and Scale Guidelines for Discrete Coordinates

  • Domain and Range Analysis of Discrete Points:

    • Points set: (1,1)(1, 1), (3,0)(3, 0), (5,5)(-5, -5), (8,2)(8, -2), (0,3)(0, 3)
    • Domain={1,3,5,8,0}\text{Domain} = \{1, 3, -5, 8, 0\}
    • Range={1,0,5,2,3}\text{Range} = \{1, 0, -5, -2, 3\}
  • Coordinate Extrema:

    • xx-values: Maximum x=8x = 8, Minimum x=5x = -5
    • yy-values: Maximum y=3y = 3, Minimum y=5y = -5
  • Axis Setup Guidelines:

    • xx--axis range: Span from 6-6 to 1010, with tick marks every 11 or 22 units.
    • yy--axis range: Span from 6-6 to 44, with tick marks every 11 or 22 units.