Paste: sums of two sequences

Author: bell
Mode: factor
Date: Thu, 16 Sep 2010 16:58:38
Plain Text |
! Obtain the sequence of the sums of two sequences.
! E.g.:
!   Input:  { 1 2 3 } { 4 5 6 }
!   Output: { 5 7 9 }

! Newbie's broken code:
1 3 [a,b]
4 6 [a,b]
[ + ] 
map

! Question: How can I make "map" accept both sequences and not only one?

New Annotation

Summary:
Author:
Mode:
Body: