The GROUP BY clause is not redundant -- it's function is to define the scope that the aggregate functions work on. It's your belief that the optimizer should read from the SELECT clause to know what the scope of the grouping is, but access to column aliases are available in the ORDER BY clause at the earliest (with the exception of MySQL, where the GROUP BY and HAVING clauses support column aliases). There's no means to support your expectation, currently. ANSI standards are nice, but the reality is ANSI standards aren't implemented in their entirety by vendors. It's hunt & peck support, like how PostgreSQL 8.4+ supports more analytic functions than Oracle (certainly more than SQL Server).
MySQL and SQLite support omitting columns from the GROUP BY, but those column values are, per the documentation, arbitrary -- the value can not be guaranteed to be returned consistently. And the scope of the grouping is also different, which has the potential to drastically effect the resultset returned. Then there's the problem of relying on vendor specific syntax while needing to port to other databases because DB2, Oracle, SQL Server and PostgreSQL do not support the functionality.
But with the advent of analytic/windowing/ranking functionality, you can get aggregate functionality without the GROUP BY. IE:
SELECT t.id,
COUNT(t.column) OVER(PARTITION BY t.id) AS num,
SUM(t.column) OVER(PARTITION BY t.id) AS sum
FROM YOUR_TABLE t
It's more verbose, and prone to error though because you can't define a PARTITION BY/ORDER BY that applies to all the analytic functions in a query. Currently... But Analytics won't supplant aggregates any time soon -- support started in Oracle 9i, SQL Server 2005+, and PostgreSQL 8.4+. I'm aware that DB2 supports analytics, but I don't know details beyond that.