Here is a formula that will always work for these kind of problems
New Point = [ Old Point - Dilation Center ] * Scale Factor + Dilation Center
Note that (a, b) + (c - d) = (a + c, b + d)
And that (a,b) - (c,b) = (a - c, b - d)
Also (a,b)*constant = (a*constant , b*constant )
So we have
New Point = [ (4,7) - (1,2) ] *10 + (1,2) =
[(3, 5)]*10 + (1.2) =
(30, 50) + (1,2) =
(31, 52)