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 -1/1 1/1 Row 2: 2/1 -1/1 3/1 2/1 Row 3: 0/1 3/1 -5/1 1/1 ----------------------------------------------------------------------------- Selected row operation: Subtract 2 / 1 times row 1 from row 2 . Linear System: Row 1: 1/1 1/1 -1/1 1/1 Row 2: 0/1 -3/1 5/1 0/1 Row 3: 0/1 3/1 -5/1 1/1 ----------------------------------------------------------------------------- Selected row operation: Divide row 2 by -3 / 1 . Linear System: Row 1: 1/1 1/1 -1/1 1/1 Row 2: 0/1 1/1 -5/3 0/1 Row 3: 0/1 3/1 -5/1 1/1 ----------------------------------------------------------------------------- Selected row operation: Subtract 3 / 1 times row 2 from row 3 . Linear System: Row 1: 1/1 1/1 -1/1 1/1 Row 2: 0/1 1/1 -5/3 0/1 Row 3: 0/1 0/1 0/1 1/1 ----------------------------------------------------------------------------- Program execution terminated.