From 82b8c95cea3454c3167c60c4a8ed449a9d7e7e49 Mon Sep 17 00:00:00 2001 From: Jidong Xiao Date: Sun, 15 Oct 2023 21:11:32 -0400 Subject: [PATCH] adjusting format again --- lectures/14_operators/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lectures/14_operators/README.md b/lectures/14_operators/README.md index c8707b5..10ab74f 100644 --- a/lectures/14_operators/README.md +++ b/lectures/14_operators/README.md @@ -6,8 +6,8 @@ - Complex numbers take the form z = a + bi, where i = √−1 and a and b are real. a is called the real part, b is called the imaginary part. - If w = c + di, then - – w + z = (a + c) + (b + d)i, - – w − z = (a − c) + (b − d)i, and + – w + z = (a + c) + (b + d)i, + – w − z = (a − c) + (b − d)i, and – w × z = (ac − bd) + (ad + bc)i - The magnitude of a complex number is √a2 + b2;