scope.SetVariable ("math", typeof (System.Math) ??);
or do i need a module?
You can do:
scope.SetVariable ("math", DynamicHelpers.GetPythonTypeFromType (typeof (System.Math)));
DynamicHelpers is located in IronPython.Runtime.Types.