They are the same for almost all purposes.
At one time different vendors used different names (Numeric/Decimal) for almost the same thing. SQL-92 made them the same with one minor difference which can be vendor specific:
Decimal Numeric must be exactly as precise as it is defined - so if you define 4 decimals places, the DB must always store 4 decimal places.
Numeric Decimal must be at least as precise as it is defined. This means that the database can actually store more digits then specified (due to the behind the scenes storage having space for extra digits). This means the database might store 1.00005 instead of 1.0000, affecting future calculations.
In SQL Server Numeric is defined as being identical to Decimal in everyway - both will always store only the specified number of decimal places.