Program to handle the Arithmetic in the Row Reduction of a Linear System VisualBASIC version (c)1999, Glyn George. Linear System: Row 1: 1/1 1/1 17/1 Row 2: 1/1 -1/1 13/1 ----------------------------------------------------------------------------- Selected row operation: Subtract 1 / 1 times row 1 from row 2 . Linear System: Row 1: 1/1 1/1 17/1 Row 2: 0/1 -2/1 -4/1 ----------------------------------------------------------------------------- Selected row operation: Divide row 2 by -2 / 1 . Linear System: Row 1: 1/1 1/1 17/1 Row 2: 0/1 1/1 2/1 ----------------------------------------------------------------------------- Selected row operation: Subtract 1 / 1 times row 2 from row 1 . Linear System: Row 1: 1/1 0/1 15/1 Row 2: 0/1 1/1 2/1 ----------------------------------------------------------------------------- Program execution terminated.