TJ Gokkentjgokken.com·Sep 27, 2024The Simple Math Powering Machine Learning: Euclidean DistanceDraw two points on a piece of paper and label them A and B. Use a ruler to connect them with a straight line, which represents the shortest distance between the two points known - that’s Euclidean distance. This simple idea is used in everything from...Machine Learning
Sachin Nandanwarwww.azureguru.net·Aug 14, 2024Mathematical concept of Euclidean distance similarity metric for vector databasesIn Math and Physics vectors play a key role in almost every aspect of the subjects. By definition a vector is an entity that has both magnitude and direction over a given space. The following schematic shows a representation of a vector in one dimens...52 readsvector database
Meet Makwanamsquare.vercel.app·Jan 27, 2024Understanding the Euclidean Algorithm for Finding GCDWhat is GCD What is GCD (Greatest Common Divisor): The Greatest Common Divisor, or GCD, is a fundamental concept in number theory, representing the largest positive integer that divides two numbers without leaving a remainder. Euclidean Algorithm Wha...data structures
Yaroslav Prozorovbyka.hashnode.dev·Jun 10, 2023GCD or HCF of two NumbersDescription GCD (Greatest Common Divisor) or HCF (Highest Common Factor) of two numbers is the largest number that divides both of them. Example: We have a = 4 and b = 6. GSD of 4 and 6 is 2. But how do we find it? We can use the super classic way. T...Mathematics