Radio buttons need the same name to group properly. Depending on what sort of back-end is handling your form after it's submitted, some people name radio buttons and checkboxes with a "[]" after their name to make them convert nicely to arrays in the form handling system.
If several forms are pointing back to the same form handler (i.e. many define the form as <form action="form_handler.php">), you can have similar names for field elements, but the form handler would need a unique entry on each page to differentiate them. It would be best practice to have unique names for each input field, even across multiple pages, if they're all part of one information-gathering session.