2019-01-30 13:41:15 +05:30
---
id: 5a23c84252665b21eecc7e1e
title: Dot product
challengeType: 5
2019-08-05 09:17:33 -07:00
forumTopicId: 302251
2019-01-30 13:41:15 +05:30
---
## Description
< section id = 'description' >
2019-07-18 17:32:12 +02:00
2019-01-30 13:41:15 +05:30
Create a function, to compute the < b > < a href = "https://en.wikipedia.org/wiki/Dot product" > dot product< / a > < / b > , also known as the < b > scalar product< / b > of two vectors.
< / section >
## Instructions
< section id = 'instructions' >
< / section >
## Tests
< section id = 'tests' >
``` yml
tests:
- text: < code > dotProduct</ code > should be a function.
testString: assert(typeof dotProduct == 'function', '< code > dotProduct< / code > should be a function.');
- text: < code > dotProduct([1, 3, -5], [4, -2, -1])</ code > should return a number.
testString: assert(typeof dotProduct([1, 3, -5], [4, -2, -1]) == 'number', '< code > dotProduct([1, 3, -5], [4, -2, -1])< / code > should return a number.');
- text: < code > dotProduct([1, 3, -5], [4, -2, -1])</ code > should return < code > 3</ code > .
testString: assert.equal(dotProduct([1, 3, -5], [4, -2, -1]), 3, '< code > dotProduct([1, 3, -5], [4, -2, -1])< / code > should return < code > 3< / code > .');
- text: < code > dotProduct([1, 2, 3, 4, 5], [6, 7, 8, 9, 10])</ code > should return < code > 130</ code > .
testString: assert.equal(dotProduct([1, 2, 3, 4, 5], [6, 7, 8, 9, 10]), 130, '< code > dotProduct([1, 2, 3, 4, 5], [6, 7, 8, 9, 10])< / code > should return < code > 130< / code > .');
- text: < code > dotProduct([5, 4, 3, 2], [7, 8, 9, 6])</ code > should return < code > 106</ code > .
testString: assert.equal(dotProduct([5, 4, 3, 2], [7, 8, 9, 6]), 106, '< code > dotProduct([5, 4, 3, 2], [7, 8, 9, 6])< / code > should return < code > 106< / code > .');
- text: < code > dotProduct([-5, 4, -3, 2], [-7, -8, 9, -6])</ code > should return < code > -36</ code > .
testString: assert.equal(dotProduct([-5, 4, -3, 2], [-7, -8, 9, -6]), -36, '< code > dotProduct([-5, 4, -3, 2], [-7, -8, 9, -6])< / code > should return < code > -36< / code > .');
- text: < code > dotProduct([17, 27, 34, 43, 15], [62, 73, 48, 95, 110])</ code > should return < code > 10392</ code > .
testString: assert.equal(dotProduct([17, 27, 34, 43, 15], [62, 73, 48, 95, 110]), 10392, '< code > dotProduct([17, 27, 34, 43, 15], [62, 73, 48, 95, 110])< / code > should return < code > 10392< / code > .');
```
< / section >
## Challenge Seed
< section id = 'challengeSeed' >
2019-07-18 17:32:12 +02:00
2019-01-30 13:41:15 +05:30
< div id = 'js-seed' >
```js
2019-03-02 17:42:56 +09:00
function dotProduct(ary1, ary2) {
2019-01-30 13:41:15 +05:30
// Good luck!
}
```
< / div >
< / section >
## Solution
< section id = 'solution' >
```js
2019-03-02 17:42:56 +09:00
function dotProduct(ary1, ary2) {
2019-01-30 13:41:15 +05:30
var dotprod = 0;
for (var i = 0; i < ary1.length ; i + + )
dotprod += ary1[i] * ary2[i];
return dotprod;
}
```
2019-07-18 17:32:12 +02:00
< / section >