/// GRADED_ASSIGNMENT_ARCHIVE

PROBLEM
SETS

Step-by-step logic for 50+ graded assignments, mock quizzes, and practice tests. Code solutions included.

/
STATISTICS_1 SOLVED
WEEK 03

Graded Assignment: Probability

Q4 logic involving conditional probability P(A|B). Includes Python simulation code to verify the answer.

def solve_q4(total, favorable):
  # Simulation approach
  return favorable / total
10/10 Score
VIEW_LOGIC ->
PYTHON SOLVED
WEEK 04

Graded Assignment: Functions & Matrix Ops

Optimizing matrix multiplication using list comprehensions vs NumPy. Explaining the logic for Q8 (Recursion).

def recursive_search(matrix, target):
  # Base case handling
  if not matrix: return False
100/100 Score
VIEW_LOGIC ->
MATH_2 SOLVED
QUIZ 01

Mock Quiz: Linear Transformations

Visualizing transformation matrices. Why determinant zero implies non-invertibility (Q3 explanation).

Passed
VIEW_LOGIC ->
CT PENDING
WEEK 05

Graded Assignment: Graphs & Trees

Currently working on the BFS/DFS traversal problem (Q9). Logic draft uploaded, verifying edge cases.

In Progress
VIEW_DRAFT ->
1 2 3 ...