Processes need CPU time when they need it. AIX/UNIX schedules processes on demand and via a priority queue of runnable processes. Processes also need to have memory. Note that AIX cuts your process up into pages and only the pages currently in use need memory, provided AIX can bring in any missing pages when the program need them - very quickly. This is the difference between the size of the program and its resident set.
One bad process can hurt all the others - so check for any programs that have seemed to get stuck in a loop or should not still be running.
This means you have to know what you expect on your system.
While monitoring processes do not worry about small 1 to 3 seconds of 100% CPU busy but take a longer term view.
Notes: