#studynotes — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #studynotes, aggregated by home.social.
-
Alright, future engineers!
**Optimization** uses derivatives to find the max or min values of a function (e.g., max profit, min cost).
Ex: Set `f'(x)=0` to find critical points.
Pro-Tip: Always check endpoints and domain boundaries!
#Calculus #Optimization #STEM #StudyNotes -
Alright, future engineers!
**Function Composition:** Applying one function to the output of another.
Ex: `(f o g)(x) = f(g(x))`
Pro-Tip: Work *inside-out*! The output of the inner function becomes the input for the outer. Check domains carefully!
#Functions #Algebra #STEM #StudyNotes -
Alright, future engineers!
A **Logarithm** answers What exponent do I need?. `log_b(x)=y` means `b^y=x`.
Ex: `log_2(8) = 3` because `2^3 = 8`.
Pro-Tip: `log(x)` (no base) usually means base 10; `ln(x)` means natural log (base e)!
#Algebra #Logarithms #STEM #StudyNotes -
Alright, future engineers!
**Newton's 2nd Law:** Force = mass * acceleration (F=ma). It quantifies how net force causes an object to accelerate.
Pro-Tip: *Always* draw a Free Body Diagram (FBD) to correctly sum all forces in the x & y directions!
#Physics #Mechanics #STEM #StudyNotes -
Alright, future engineers!
**Synthetic Division** is a shortcut to divide a polynomial by a linear factor `(x-k)`.
Ex: `(x^3 - x^2 + x - 1) / (x-1)` use `k=1`.
Pro-Tip: ONLY works if the divisor is `(x-k)`! Not for `x^2+1` or higher powers.
#Polynomials #Algebra #STEM #StudyNotes -
Alright, future engineers!
**The Integral** calculates the total accumulation of a quantity or the area under a curve.
Ex: Area under `y=f(x)` from `a` to `b` is `∫_a^b f(x) dx`.
Pro-Tip: If the derivative tells you the rate of change, the integral tells you the *total change* or *sum*!
#Calculus #Integration #STEM #StudyNotes -
Alright, future engineers!
The **Imaginary Unit 'i'** is `sqrt(-1)`. It extends our number system to solve equations with negative square roots.
Ex: `i^2 = -1`
Pro-Tip: Essential for complex numbers, solving ALL quadratics, and crucial for AC circuit analysis!
#Algebra #ComplexNumbers #STEM #StudyNotes -
Alright, future engineers!
The **Derivative** measures a function's instantaneous rate of change – the slope of its tangent line.
Ex: `d/dx (x^3) = 3x^2` (Power Rule!)
Pro-Tip: A positive derivative means the function is increasing; negative means decreasing!
#Calculus #Derivatives #STEM #StudyNotes -
Alright, future engineers!
The **Quadratic Formula** solves `ax^2+bx+c=0` for x.
Ex: `x = (-b ± sqrt(b^2 - 4ac)) / 2a`
Pro-Tip: Always identify a, b, and c *correctly* with their signs! A common mistake.
#Algebra #QuadraticEq #STEM #StudyNotes -
**Feynman Technique:** Explain complex concepts simply, like teaching a child.
Ex: Try explaining basic thermodynamics (entropy, enthalpy) without jargon. Struggle points = your knowledge gaps!
Pro-Tip: Simplify to solidify understanding. Can't simplify? Learn more!
#StudyHacks #DeepLearning #STEM #StudyNotes -
**Feynman Technique:** Explain complex concepts simply, like teaching a child.
Ex: Try explaining basic thermodynamics (entropy, enthalpy) without jargon. Struggle points = your knowledge gaps!
Pro-Tip: Simplify to solidify understanding. Can't simplify? Learn more!
#StudyHacks #DeepLearning #STEM #StudyNotes -
Alright, future engineers!
**Momentum (p):** A measure of an object's mass in motion.
Ex: `p = m * v` (mass * velocity).
Pro-Tip: In a closed system, total momentum is *always* conserved, even in collisions! -
Alright, future engineers!
A **Logarithm** is the exponent you raise a base to get a certain number.
Ex: `log_10(100) = 2` because `10^2 = 100`.
Pro-Tip: Logs simplify complex multiplications/divisions into easier additions/subtractions!
#Algebra #Logarithms #STEM #StudyNotes -
Alright, future engineers!
**Work** is the energy transferred when a force causes an object to move over a distance.
Ex: `W = F * d * cos(theta)`
Pro-Tip: Only the force component *parallel* to displacement does work! Perpendicular force = zero work.
#Physics #Energy #STEM #StudyNotes -
Alright, future engineers!
**Chunking** means grouping information into smaller, meaningful units.
Ex: Remembering 1011001 is hard. 101 100 1 (binary chunks) is easier.
Pro-Tip: Makes complex topics less overwhelming & boosts memory capacity!
#StudyHacks #Memory #STEM #StudyNotes -
Alright, future engineers!
**Chunking** means grouping information into smaller, meaningful units.
Ex: Remembering 1011001 is hard. 101 100 1 (binary chunks) is easier.
Pro-Tip: Makes complex topics less overwhelming & boosts memory capacity!
#StudyHacks #Memory #STEM #StudyNotes -
Alright, future engineers!
**Newton's 2nd Law**: F=ma. A net force causes an object to accelerate in that direction, proportional to force, inversely to mass.
Ex: 10N on 2kg = 5m/s^2.
Pro-Tip: Always start your FBDs with Fnet=ma for each axis!
#Physics #Forces #STEM #StudyNotes -
Alright, future engineers!
**Interleaving**: Mix different problem types or topics within one study session.
Ex: Instead of doing all Calculus I problems, then all Physics I, alternate between them!
Pro-Tip: Forces your brain to actively choose strategies, boosting flexibility & long-term retention.
#StudyHacks #STEMLearning #STEM #StudyNotes -
Alright, future engineers!
**Pomodoro Technique:** Work in focused, timed intervals to boost productivity.
Ex: Study 25 min, break 5 min. (Repeat 4x, then a longer break).
Pro-Tip: Use a timer & minimize distractions. Maximize focus, prevent burnout!
#StudyHacks #TimeManagement #STEM #StudyNotes -
Alright, future engineers!
**Pomodoro Technique:** Work in focused, timed intervals to boost productivity.
Ex: Study 25 min, break 5 min. (Repeat 4x, then a longer break).
Pro-Tip: Use a timer & minimize distractions. Maximize focus, prevent burnout!
#StudyHacks #TimeManagement #STEM #StudyNotes -
Alright, future engineers!
**Euler's Method:** Approximates solutions to differential equations by taking small linear steps.
Formula: `y_n+1 = y_n + h * f(x_n, y_n)`
Pro-Tip: Smaller step size (h) improves accuracy but increases computational cost! -
Alright, future engineers!
**Modular Arithmetic:** `a === b (mod n)` means `a` & `b` have the same remainder when divided by `n`.
Ex: `17 === 5 (mod 12)` since `17 % 12 = 5` & `5 % 12 = 5`.
Pro-Tip: Think 'clock arithmetic'! It's key for cryptography & hashing. -
Alright, future engineers!
**Modular Arithmetic:** `a === b (mod n)` means `a` & `b` have the same remainder when divided by `n`.
Ex: `17 === 5 (mod 12)` since `17 % 12 = 5` & `5 % 12 = 5`.
Pro-Tip: Think 'clock arithmetic'! It's key for cryptography & hashing. -
Alright, future engineers!
The **Dot Product** takes two vectors and returns a scalar. It tells you how much they align!
Ex: For `v=[v1,v2]` & `w=[w1,w2]`, `v.w = v1w1 + v2w2`.
Pro-Tip: If `v.w = 0`, the vectors are orthogonal (perpendicular)!
#LinearAlgebra #Vectors #STEM #StudyNotes -
Alright, future engineers!
The **Dot Product** takes two vectors and returns a scalar. It tells you how much they align!
Ex: For `v=[v1,v2]` & `w=[w1,w2]`, `v.w = v1w1 + v2w2`.
Pro-Tip: If `v.w = 0`, the vectors are orthogonal (perpendicular)!
#LinearAlgebra #Vectors #STEM #StudyNotes -
Alright, future engineers!
The **Dot Product** takes two vectors and returns a scalar. It tells you how much they align!
Ex: For `v=[v1,v2]` & `w=[w1,w2]`, `v.w = v1w1 + v2w2`.
Pro-Tip: If `v.w = 0`, the vectors are orthogonal (perpendicular)!
#LinearAlgebra #Vectors #STEM #StudyNotes -
Alright, future engineers!
The **Dot Product** takes two vectors and returns a scalar. It tells you how much they align!
Ex: For `v=[v1,v2]` & `w=[w1,w2]`, `v.w = v1w1 + v2w2`.
Pro-Tip: If `v.w = 0`, the vectors are orthogonal (perpendicular)!
#LinearAlgebra #Vectors #STEM #StudyNotes -
Alright, future engineers!
The **Dot Product** takes two vectors and returns a scalar. It tells you how much they align!
Ex: For `v=[v1,v2]` & `w=[w1,w2]`, `v.w = v1w1 + v2w2`.
Pro-Tip: If `v.w = 0`, the vectors are orthogonal (perpendicular)!
#LinearAlgebra #Vectors #STEM #StudyNotes -
Alright, future engineers!
The **Fundamental Theorem of Calculus (FTC)** bridges diff. & int., showing they're inverse ops!
Ex: `Int_a^b f'(x)dx = f(b) - f(a)`
Pro-Tip: This is WHY you use antiderivatives to solve definite integrals!
#Calculus #FTC #STEM #StudyNotes -
Alright, future engineers!
**Trapezoidal Rule:** Approximates definite integrals by summing areas of trapezoids under the curve.
Ex: `h/2 * (f(x0) + f(x1))` for one interval.
Pro-Tip: More subintervals (smaller `h`) generally means better accuracy! -
Alright, future engineers!
A **Logarithm** is the inverse of exponentiation. It answers: what power must base 'b' be raised to get 'x'?
Ex: `log_2(8) = 3` because `2^3 = 8`.
Pro-Tip: Remember `log_b(x) = y` is equivalent to `b^y = x`! -
Alright, future engineers!
A **Logarithm** is the inverse of exponentiation. It answers: what power must base 'b' be raised to get 'x'?
Ex: `log_2(8) = 3` because `2^3 = 8`.
Pro-Tip: Remember `log_b(x) = y` is equivalent to `b^y = x`! -
Alright, future engineers!
A **Logarithm** is the inverse of exponentiation. It answers: what power must base 'b' be raised to get 'x'?
Ex: `log_2(8) = 3` because `2^3 = 8`.
Pro-Tip: Remember `log_b(x) = y` is equivalent to `b^y = x`! -
Alright, future engineers!
A **Logarithm** is the inverse of exponentiation. It answers: what power must base 'b' be raised to get 'x'?
Ex: `log_2(8) = 3` because `2^3 = 8`.
Pro-Tip: Remember `log_b(x) = y` is equivalent to `b^y = x`! -
Alright, future engineers!
A **Logarithm** is the inverse of exponentiation. It answers: what power must base 'b' be raised to get 'x'?
Ex: `log_2(8) = 3` because `2^3 = 8`.
Pro-Tip: Remember `log_b(x) = y` is equivalent to `b^y = x`! -
Alright, future engineers!
**Standard Deviation (SD)** measures how spread out data points are from the mean.
Ex: High SD = wide spread. Low SD = clustered. `SD = sqrt(Variance)`.
Pro-Tip: Smaller SD means more consistent/reliable data (e.g., material strength)!
#Statistics #DataAnalysis #STEM #StudyNotes -
Alright, future engineers!
A **Derivative** measures the instantaneous rate of change of a function or the slope of its tangent line.
Ex: Power Rule: `d/dx (x^n) = n*x^(n-1)` (e.g., `d/dx(x^3) = 3x^2`).
Pro-Tip: Think 'slope'! It tells you how fast something is changing *at that exact moment*.
#Calculus #Derivatives #STEM #StudyNotes -
Alright, future engineers!
**Feynman Technique**: Explain a concept in simple terms, as if to a child.
Ex: Teach integration by parts to a rubber duck.
Pro-Tip: Can't simplify it? That's your knowledge gap! Re-study until it's clear.
#StudySmart #DeepUnderstanding #STEM #StudyNotes -
Alright, future engineers!
**Active Recall** means actively testing yourself to retrieve information from memory, not just passively re-reading notes.
Ex: Close your textbook & try to explain a concept aloud or write it down.
Pro-Tip: Struggling to recall? That's your exact knowledge gap—focus your next study session there!
#StudySmart #STEMHacks #STEM #StudyNotes -
Alright, future engineers!
**Median**: The middle value in an ordered dataset.
Ex: Data: 1,3,5,7,9. Median=5. For 1,2,3,4, median=(2+3)/2=2.5.
Pro-Tip: Use it when outliers might skew your mean, like income or error data!
#Statistics #DataAnalysis #STEM #StudyNotes -
Alright, future engineers!
**Pigeonhole Principle:** If `n` items are put into `m` containers, and `n > m`, then at least one container must contain more than one item.
Ex: 7 emails into 6 folders means one folder has >1 email.
Pro-Tip: A powerful proof technique for existence!
#DiscreteMath #Logic #STEM #StudyNotes -
Alright, future engineers!
**Pigeonhole Principle:** If `n` items are put into `m` containers, and `n > m`, then at least one container must contain more than one item.
Ex: 7 emails into 6 folders means one folder has >1 email.
Pro-Tip: A powerful proof technique for existence!
#DiscreteMath #Logic #STEM #StudyNotes -
Alright, future engineers!
**Mutually Exclusive Events:** Can't happen simultaneously.
Ex: Rolling a 1 AND a 2 on a single die. P(A and B) = 0.
Pro-Tip: If ME, P(A or B) = P(A) + P(B). Simple addition!
#Probability #Statistics #STEM #StudyNotes -
Alright, future engineers!
**Type I Error (alpha):** Rejecting a true null hypothesis (a false positive).
Ex: Concluding a new material is unsafe when it actually meets specs.
Pro-Tip: Balancing Type I (alpha) and Type II (beta) errors is crucial in your design & testing decisions!
#HypothesisTesting #DecisionMaking #STEM #StudyNotes -
Alright, future engineers!
The **Expected Value (E[X])** is the long-run average outcome of a random variable.
Ex: For a fair 6-sided die, E[X] = 3.5. (It's `Sum(x * P(x))`).
Pro-Tip: It's a theoretical average, not necessarily an outcome you'll see in a single trial!
#Statistics #Probability #STEM #StudyNotes -
Alright, future engineers!
**Combinations:** Ways to *choose* items from a set where the order *doesn't* matter.
Ex: Picking 3 teammates from 5 friends: `C(5,3) = 10` ways.
Pro-Tip: If swapping items doesn't create a new outcome, it's a combination!
#DiscreteMath #Combinatorics #STEM #StudyNotes -
Alright, future engineers!
**Combinations:** Ways to *choose* items from a set where the order *doesn't* matter.
Ex: Picking 3 teammates from 5 friends: `C(5,3) = 10` ways.
Pro-Tip: If swapping items doesn't create a new outcome, it's a combination!
#DiscreteMath #Combinatorics #STEM #StudyNotes -
Alright, future engineers!
**Gravitational Potential Energy (GPE)** is stored energy due to an object's position in a gravitational field.
Formula: `GPE = mgh`
Pro-Tip: Only *changes* in height matter. Pick a convenient zero-height reference!
#Physics #Mechanics #STEM #StudyNotes -
Alright, future engineers!
**Gravitational Potential Energy (GPE)**: Energy stored by an object due to its vertical position in a gravitational field.
Ex: `PE_g = mgh`. Lifting a 1kg book 1m adds 9.8J of PE.
Pro-Tip: It's relative! Always define your h=0 reference point.
#Physics #Energy #STEM #StudyNotes -
Alright, future engineers!
**Probability Mass Function (PMF)**: Gives the probability for *each specific outcome* of a discrete random variable.
Ex: Fair die `P(X=3) = 1/6`.
Pro-Tip: All `P(X=x)` values must be non-negative & sum to 1.
#Probability #DiscreteMath #STEM #StudyNotes