in reply to Re^2: Help !!! Symbolic Math Factroize Subroutine is clobbering my hash
in thread Help !!! Symbolic Math Factroize Subroutine is clobbering my hash

push @{ $this_hash{$key} }, $something;
Perl will automagically create a new anonymous array and associate it with $this_hash{$key}, even if the hash didn't even have this key before (it's called 'autovivification'). OTOH, if the key is already pointing to an array, Perl will reuse it.