I\'m just about to write my first application in a duck typed language (Groovy).
If I was to write the same application in a static typed language then I would need to d
I'm not familiar with groovy, but in general, no, you don't need to define interfaces in loosely typed languages.
You would be repeating yourself, if you need to change a methods signature, then you need to do it in two places, not one.
Although interfaces do have some use as documentation, in a loosely typed language, most coders will not expect an interface, and therefore will not go searching for an interface if they need documentation.
Most dynamic languages have good IDE's available for them, with method completion, which further diminishes the need for a separate interface.
Methods can be bound and unbound in dynamic languages. Therefore, you can, and probably will, end up with objects that do not adhere to the interface. Having a separate interface could end up confusing people reading your code.