Skip to content

AI Math (500 Questions) Practice Exam

Test yourself under real exam conditions: 50 timed questions, 60 on the clock, pass mark 70%%. Instant score with a full review of everything you got wrong. Free — no account needed.

📝 50 questions · ⏱ 60 minutes · 🎯 Pass mark 70% · 🆓 Free, no signup

Exam details

  • 50 questions drawn from 500 cards
  • Countdown timer — auto-submits when time runs out
  • Pass mark 70% (real certification threshold)
  • Full review of wrong answers at the end
  • No signup required — save your score with a free account

Sample Questions

5 shown

What is a vector in the context of machine learning?

Show ▼

\[\mathbf{x} = \begin{bmatrix}x_1 \\ x_2 \\ \vdots \\ x_n\end{bmatrix} \in \mathbb{R}^n\]
Symbols: \(x_i\) = i-th component; \(\mathbb{R}^n\) = n-dimensional real space.
Intuition: A vector is an ordered list of n numbers. In ML it represents a data point, feature embedding, or parameter set as a point in n-dimensional space.

How do you add two vectors?

Show ▼

\[\mathbf{a} + \mathbf{b} = \begin{bmatrix}a_1+b_1 \\ a_2+b_2 \\ \vdots \\ a_n+b_n\end{bmatrix}\]
Symbols: \(a_i, b_i\) = corresponding components of vectors a and b.
Intuition: Add element-wise. Geometrically, place the tail of b at the head of a; the sum points to the new head.

How do you multiply a vector by a scalar?

Show ▼

\[c\mathbf{x} = \begin{bmatrix}cx_1 \\ cx_2 \\ \vdots \\ cx_n\end{bmatrix}\]
Symbols: \(c \in \mathbb{R}\) = scalar; \(x_i\) = i-th component.
Intuition: Scales every component by c. Stretches (|c|>1), shrinks (|c|<1), or flips direction (c<0) the vector.

What is the L2 (Euclidean) norm of a vector?

Show ▼

\[\|\mathbf{x}\|_2 = \sqrt{\sum_{i=1}^n x_i^2}\]
Symbols: \(\|\cdot\|_2\) = L2 norm; \(x_i\) = i-th component; \(n\) = dimension.
Intuition: The straight-line (Euclidean) distance from the origin to the tip of the vector. Most common norm in ML for measuring distances.

What is the L1 norm of a vector?

Show ▼

\[\|\mathbf{x}\|_1 = \sum_{i=1}^n |x_i|\]
Symbols: \(|x_i|\) = absolute value of i-th component.
Intuition: Sum of absolute values. Also called the 'Manhattan' or 'taxicab' distance. Encourages sparsity in optimization (L1 regularization).

🎯 Take the AI Math (500 Questions) Practice Exam