So a very gracious and talented friend of mine ended up writing this sql query for me, and told me to post it up here so I wanted to share it here:
SELECT SUM(1) as Comments, (datediff(minute, Question.CreationDate, Answers.CreationDate) / 30) as Delay
FROM Posts Question, Posts Answers
WHERE Question.Id = Answers.ParentId AND
Answers.PostTypeId = 2 AND
(SELECT COUNT(*)
FROM Posts TheseAnswers
WHERE TheseAnswers.ParentId = Question.Id
AND TheseAnswers.PostTypeId = 2) >= 3 AND
datediff(minute, Question.CreationDate, Answers.CreationDate) < 1200 AND
datediff(minute, Question.CreationDate, Answers.CreationDate) >= 0
GROUP BY (datediff(minute, Question.CreationDate, Answers.CreationDate) / 30)
ORDER BY Delay
The query retrieves, for questions that received 3 or more answers, the number of answers each question received every half hour.
The result is really beautiful. For those of you aware of power law distributions, the following is what the log-log plot of the data looks like.
On the x-axis is the log of time step and on the y-axis is the log of number of average answers received per half-hour...

Thank you Stack Exchange for your wonderful platform and interface. =)