PizzaMaster
I think you have to consider the cases slightly differently.
Case 1: Ends with zero
Since 0 must be at the end, there is only one possibility for the last digit. We can fill this in:
_ _ _ 1
After this, we are left with 7 numbers that could still come at the start, as 0 has been used.
7 _ _ 1
Continue filling this in to get 7 X 6 X 5 X 1 = 210 ways
Case 2: Ends with 2, 4, or 6
The last digit can be either 2, 4, or 6, so that’s three possibilities for the last position:
_ _ _ 3
After this, there are 6 options for the first digit (excluding 0 and whichever number we just used)
6 _ _ 3
Then 6 again for the next digit (excluding the two we already used, but including 0)
6 6 _ 3
Which is 6 X 6 X 5 X 3 = 540 ways
As you already calculated, the total is 1470, so the probability that the number is even is (210+540)/1470 = 25/49
Hope this helps!