A simple use case of polymorphism is that you can have an array of coolingMachines where element 0 is a refrigator and element 1 is an AirConditioner etc...
You do not need to preform any checks or make sure which object you are dealing with in order to call trip or start etc.
This can be a great benefit when taking input from a user and having to iterate over all the objects and call similar functions