Quiz Space

Machine Learning Techniques · Quiz 1 · 26 Oct 2025 · September 2025 term

Question 3: Consider the dataset consisting of the following points: …

Question 3

+4 marksOne or more correct options

Consider the dataset consisting of the following points:

(0,0),  (0,2),  (2,0),  (2,2).(0, 0), \; (0, 2), \; (2, 0), \; (2, 2).

We want to run the KK-means++ algorithm with K=2K = 2. Suppose the first cluster center chosen is (0,0)(0, 0). Which of the following statements are correct?

Hint: The score of a datapoint xx is given by S(x)=min⁡j=1,2,…,l−1(∣∣x−μj0∣∣2)S(x) = \min_{j=1,2,\ldots,l-1} (||x - \mu_j^0||^2), where μj0\mu_j^0 is the initial cluster center.

Select all that apply.

  1. A

    The points (0, 2), (2, 0), and (2, 2) have the equal probability of being chosen as the second cluster center.

  2. B

    The probability of selecting (2, 2) as the second cluster center is twice that of selecting (0, 2).

  3. C

    If (2, 2) is chosen as the second cluster center, the algorithm will always converge in one iteration.

  4. D

    The tie-breaking rule will affect the final cluster centers.

Show answer

Correct answers

  • B

    The probability of selecting (2, 2) as the second cluster center is twice that of selecting (0, 2).

  • C

    If (2, 2) is chosen as the second cluster center, the algorithm will always converge in one iteration.

  • D

    The tie-breaking rule will affect the final cluster centers.

Question 3 of 14 in the IIT Madras BS Machine Learning Techniques (MLT) Quiz 1 paper sat on 26 Oct 2025, in the September 2025 term (IIT M DIPLOMA AN EXAM QDD2 26 Oct 2025). It carries 4 marks.

More questions from this paper

  1. Q1Which among the following is true with respect to the Lloyds’ algorithm?
  2. Q2Figure question
  3. Q4Suppose that 100 items are sampled from a manufacturing process, where three items are found to be defective. Consider …
  4. Q5Which of the following are valid kernel functions? Select all that apply.
  5. Q6Consider a mean-centered dataset consisting of 150 patients from the health-care domain with 6 features. The dataset is…
  6. Q7Consider a dataset X \in \mathbb{R}^{d \times n} with sample size n = 100 (i.e., X has d features and 100 examples), wh…
  7. Q8What is the covariance matrix of the dataset?
  8. Q9If standard PCA is performed on this dataset, what is the variance along the first principal component? Enter the answe…
  9. Q10If standard PCA is performed on this dataset, what is the variance along the second principal component? Enter the answ…
  10. Q11Based on the above data, answer the given subquestions.
  11. Q12Suppose at the t-th iteration of the EM algorithm, the parameters are: \pi_1 = 0.3, \quad \pi_2 = 0.7, \quad \mu_1 = 2,…
  12. Q13Perform K-means clustering with K = 2 and initial cluster centers at (−2, 3) and (2,−1). What are the final means of cl…
  13. Q14Suppose we introduce a new data point (0, 0) to the existing dataset and perform K means with the same initial cluster …