What you will need to look at is some of the performance views based on what you have set.
For example:
v$memory_target_advice - this will show you whether the memory allocated is ok or whether you can benefit from adding more.
Likewise with:
v$db_cache_size_advice.
Remember though that there will be a point where just chucking more and more memory at the instance won't make an improvement in performance and in fact could go the other way. The process will spend more time scanning the shared pool for a free block than actually doing work for example
You can also use the advisors in OEM and you should generate statistics as mentioned previously. I tend to invalidate any previous cursors.
Cheers
Dale