본문 바로가기
반응형

분류 전체보기13

Rotation Matrix in Linear Algebra What is Rotation Matrix? The rotation Matrix refers to the dynamic change of the angle of the vector without affecting the length or magnitude. Normally, the coordinates of the vector are defined by (x, y). x = R.cos(α), y = R.sin(α) After rotating the matrix at any new angle, we can define x and y as: x = R.cos(α + β) y = R.sin(α + β) with the help of the formula, cos(α + β) = cos(α)cos(β) - si.. 2023. 8. 5.
Hermitian Matrix in Linear Algebra Introduction to Hermitian matrix A matrix in which the value is remaining the same after being conjugate and transposed in respected order. So in order to find if one matrix is a Hermitian matrix, we must have an understanding of how to conjugate and transpose. Conjugate Matrix The way to conjugate the matrix is to multiply the complex value of the matrix with -1 and keep the non-complex value a.. 2023. 8. 5.
Polar coordinates in 2D Introduction to Polar Coordinates When referring to Polar coordinates in Linear Algebra, there is a vector or point on a two-dimensional system whose coordinates comprise magnitude and the angle respected to one direction. This means we can draw one vector on a plane by knowing the magnitude of the vector and its angle. The magnitude is the length of one vector from the pole which represent by R.. 2023. 8. 5.
Finding GCD or HCF What is GCD or HCF? GCD (Great Common Devisor) or HCF (High Common Factor) is the biggest common devisor or factor of two or more numbers. There are a few algorithms out there to find GCD or HCF, such as Prime Factor and Euclid's Division Algorithm. Prime Factorization Prime Factorization is a method of finding GCD by calculating the factors of each number and comparing them for matching. For in.. 2023. 7. 31.
Prime Numbers Prime Number A prime number is a positive integer that can only be divided by 1 and itself, which means that 1 and itself are the only two factors of it. Prime For example 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, and 33. Those numbers can be written as below: 2 = 1 x 2 3 = 1 x 3 7 = 1 x 7 11 = 1 x 11 17 = 1 x 17 Is 1 a Prime Number? Based on the prime definition above, 1 is not a prime number due to .. 2023. 7. 31.
반응형