<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Leandros Georgiou</title>
    <description>The latest articles on DEV Community by Leandros Georgiou (@ljgeorgiou).</description>
    <link>https://dev.to/ljgeorgiou</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4123298%2F93cf61f4-13dc-4e9e-8430-1bc5965f5fd7.png</url>
      <title>DEV Community: Leandros Georgiou</title>
      <link>https://dev.to/ljgeorgiou</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ljgeorgiou"/>
    <language>en</language>
    <item>
      <title>Linear algebra explained simply: how to calculate the dot product</title>
      <dc:creator>Leandros Georgiou</dc:creator>
      <pubDate>Sun, 13 Sep 2026 15:29:57 +0000</pubDate>
      <link>https://dev.to/ljgeorgiou/linear-algebra-explained-simply-how-to-calculate-the-dot-product-4ohb</link>
      <guid>https://dev.to/ljgeorgiou/linear-algebra-explained-simply-how-to-calculate-the-dot-product-4ohb</guid>
      <description>&lt;p&gt;The dot product works by taking two vectors of the same dimension and returning a single value. &lt;/p&gt;

&lt;p&gt;For example,&lt;br&gt;
Let's say we want to find the dot product of vectors [1, 2, 3] and [4, 5, 6]:&lt;/p&gt;

&lt;p&gt;Step 1 - Multiply the numbers in matching positions:&lt;/p&gt;

&lt;p&gt;1 * 4 = 4&lt;br&gt;
2 * 5 = 10&lt;br&gt;
3 * 6 = 18&lt;/p&gt;

&lt;p&gt;Step 2 - Add up the results&lt;/p&gt;

&lt;p&gt;4 + 10 + 18 = 32&lt;/p&gt;

&lt;p&gt;Therefore [1, 2, 3]⸳[4, 5, 6] = 32&lt;/p&gt;

&lt;p&gt;Let's look at another example. Let's say we wanted to find the dot product of vectors [8, 7] and [5, 2]:&lt;/p&gt;

&lt;p&gt;Step 1 - Multiply the numbers in matching positions:&lt;/p&gt;

&lt;p&gt;8 * 5 = 40&lt;br&gt;
7 * 2 = 14&lt;/p&gt;

&lt;p&gt;Step 2 - Add up the results&lt;/p&gt;

&lt;p&gt;40 + 14 = 54&lt;/p&gt;

&lt;p&gt;Therefore [8, 7]⸳[5, 2] = 54&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>learning</category>
      <category>tutorial</category>
    </item>
  </channel>
</rss>
