Let $a,b, c$ be the zeroes of $f(x) = x^3+3x^2-7x+1$. Find $f'(a)f'(b)f'(c)$.
My idea involved substituting in $a,b,c$ into $f'(x)$ then using Vieta's but that would take far too long of a time, especially since I'm training for competitions. What would be a great way to solve this within a time limit?
Some ideas that are too long for a comment (maybe even a partial answer):
Since the coefficient of $x^3$ is $1$, we have $$ f(x) = (x-a)(x-b)(x-c) $$ Differentiating this using the product rule leads us to $$ f'(x) = (x-b)(x-c) + (x-a)(x-c) + (x-a)(x-b) $$ So the derivatives asked for are given by $$ f'(a) = (a-b)(a-c) = a^2 -ab-ac + bc\\ f'(b) = (b-a)(b-c) = b^2 -ab + ac - bc\\ f'(c) = (c-a)(c-b) = c^2 +ab-ac -bc $$ If you know the roots, then this is the expression I would use to insert and calculate.
If not, then... The sum of these derivatives is, by Vieta's formulas $$ a^2 + b^2 + c^2 -ab-ac-bc = (a+b+c)^2-3(ab+ac+bc) = (-1)^2 -3\cdot(-7) = 22 $$ and their product is $-1300$, as it's the negative of the discriminant. I am failing to find a third equation to help solve this, though.
Edit: The question has changed to just finding the product, and as I mentioned, that is $-1300$. I'll elaborate a bit on that, then.
Given all the (not necessarily distinct) roots $r_1, r_2, \ldots, r_n$ of a degree-$n$ monic polynomial, the discriminant of that polynomial is $$ \prod_{i<j}(r_i-r_j)^2 $$ and we see from the expressions above that $$ f'(a)f'(b)f'(c) = (a-b)(b-a)(a-c)(c-a)(b-c)(c-b) $$ which is the negative of the discriminant. So how would you know that the discriminant is $1300$ in the first place? Well, that's just a formula to learn in this case. For a quadratic polynomial $rx^2 + sx + t$, the discriminant is $s^2 - 4rt$, while for a cubic polynomial $px^3 + qx^2 + rx + s$ the discriminant is $$ q^2r^2 - 4q^3s - 4pr^3 - 27p^2s^2 + 18pqrs $$ In our case, this becomes $$ 9\cdot 49 -4\cdot 27\cdot 1 - 4\cdot1\cdot (-343)-27\cdot 1\cdot 1 + 18\cdot 1\cdot3\cdot(-7)\cdot1 = 1300 $$