Loading...
Loading...
Axioms:
Conditional Probability: P(A|B) = P(A∩B)/P(B)
Independent Events: P(A∩B) = P(A)·P(B)
Bayes' Theorem: P(A|B) = P(B|A)·P(A) / P(B)
Binomial Distribution B(n,p):
Poisson Distribution:
Normal Distribution N(μ,σ²):
Measures of Central Tendency:
Measures of Dispersion:
Correlation: Measures relationship between two variables
Regression Line: y = a + bx
Chi-Square Test: Tests if observed frequencies match expected
Bisection Method: If f(a)·f(b) < 0 (sign change), root exists between a and b. Repeatedly halve the interval: c = (a+b)/2
Newton-Raphson Method: Xₙ₊₁ = Xₙ - f(Xₙ)/f'(Xₙ)
Secant Method: Xₙ₊₁ = Xₙ - f(Xₙ)·(Xₙ-Xₙ₋₁)/(f(Xₙ)-f(Xₙ₋₁))
Lagrange Interpolation: P(x) = Σ yᵢ·Lᵢ(x) where Lᵢ(x) = Π(x-xⱼ)/(xᵢ-xⱼ) for j≠i
Newton's Divided Difference: Used when data points are unequally spaced
Newton's Forward Difference: Used for equally spaced points; good near beginning
Trapezoidal Rule: ∫ₐᵇ f(x)dx ≈ h/2·[f(x₀) + 2f(x₁) + ... + 2f(xₙ₋₁) + f(xₙ)] Error: O(h²)
Simpson's 1/3 Rule: (n must be even) ∫ₐᵇ f(x)dx ≈ h/3·[f(x₀) + 4f(x₁) + 2f(x₂) + 4f(x₃) + ... + f(xₙ)] Error: O(h⁴) — more accurate than trapezoidal
A periodic function can be expressed as sum of sine and cosine terms.
Fourier Series: f(x) = a₀/2 + Σ[aₙcos(nπx/L) + bₙsin(nπx/L)]
Coefficients:
Even function: f(-x) = f(x) → only cosine terms (bₙ = 0) Odd function: f(-x) = -f(x) → only sine terms (aₙ = 0)
Q1 (2023): In a batch of 1000 items, mean=50, SD=5. Find P(45 ≤ X ≤ 55). Z₁ = (45-50)/5 = -1; Z₂ = (55-50)/5 = +1 P(-1 ≤ Z ≤ 1) = 2×P(0≤Z≤1) = 2×0.3413 = 0.6826 = 68.26%
Q2 (2023): Apply Newton-Raphson to find root of x³ - 2x - 5 = 0 starting from x₀=2. f(x) = x³-2x-5; f'(x) = 3x²-2 x₁ = 2 - f(2)/f'(2) = 2 - (8-4-5)/(12-2) = 2 - (-1/10) = 2.1 x₂ = 2.1 - f(2.1)/f'(2.1) ≈ 2.0946
Q3 (2022): Find variance of 9. Mean = (2+4+4+4+5+5+7+9)/8 = 40/8 = 5 Variance = [(2-5)²+(4-5)²+(4-5)²+(4-5)²+(5-5)²+(5-5)²+(7-5)²+(9-5)²]/8 = [9+1+1+1+0+0+4+16]/8 = 32/8 = 4 SD = 2
Complete Engineering Maths 2 notes for B.Tech CS Semester 2 — probability distributions, statistics, numerical methods, Fourier series, and Z-transforms with solved PYQs.
44 pages · 2.2 MB · Updated 2026-03-11
Binomial (yes/no trials), Poisson (rare events per unit), Normal/Gaussian (bell curve), Exponential (time between events). These appear in algorithms, AI, and system design.
P(A|B) = P(B|A)P(A)/P(B). Used in spam filters, medical diagnosis, Naive Bayes classifier in ML. Calculates posterior probability given prior knowledge.
Object Oriented Programming in C++ — Complete Notes
Object Oriented Programming
Discrete Mathematics Solved PYQs & Complete Notes
Discrete Mathematics
DBMS Complete Notes — B.Tech CS Sem 4
Database Management Systems
Compiler Design — Complete Notes CS Sem 6
Compiler Design
Machine Learning Complete Notes — B.Tech CS Sem 6
Machine Learning
Your feedback helps us improve notes and tutorials.