DATA and TESTING NOTES for HW2

1. Here are some useful numbers in decimal and hex equivalent
	for testing your procedures:

	A:	      1,234	=	 4D2h
	B:	      4,321	=	10E1h
	A+B:	      5,555	=	15B3h
	AxB:      5,332,114	=    515,C92h
	X:	     12,345	=	3039h
	Y:    1,234,567,890	= 49,960,2D2h
	2Y:   2,469,135,780	= 93,2C0,5A4h
	Y^2:  1,524,157,875,019,052,100
				= 1,526,E58,312,1FF,444h
	Z:	987,654,321	= 3A,DE6,8B1h
	2Z:   1,975,308,642	= 75,BCD,162h
	U:      123,456,789	=  7,5BC,D15h
	U+Z:  1,111,111,110	= 42,3A3,5C6h     
	XZ:  12,192,592,745	= B1,6CF,267,F69h

2. These data were generated using the calculator on
   my Solaris Workstation.  You can generate more examples
   using any reasonably good calculator that can display
   in both decimal and hex.

3. You should also invent your own numbers to test certain
   carry or patterns.  You should always test "boundary"
   conditions: adding a number to 0 or to 1,
   multiplication of a number by 0 by 1, etc.

   
