forked from TheAlgorithms/JavaScript
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPolynomial.js
More file actions
Latest commit
59 lines (55 loc) · 1.59 KB
/
Copy pathPolynomial.js
File metadata and controls
59 lines (55 loc) · 1.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/**
* Polynomials are algebraic expressions consisting of two or more algebraic terms.
* Terms of a polynomial are:
* 1. Coefficients e.g. 5, 4 in 5x^0, 4x^3 respectively
* 2. Variables e.g. y in 3y^2
* 3. Exponents e.g. 5 in y^5
*
* Class Polynomial constructs the polynomial using Array as an argument.
* The members of array are coefficients and their indexes as exponents.
*/
classPolynomial{
constructor(array){
this.coefficientArray=array// array of coefficients
this.polynomial=''// in terms of x e.g. (2x) + (1)
this.construct()
}
/**
* Function to construct the polynomial in terms of x using the coefficientArray
*/
construct(){
this.polynomial=this.coefficientArray
.map((coefficient,exponent)=>{
if(coefficient===0){
return'0'
}
if(exponent===0){
return`(${coefficient})`
}elseif(exponent===1){
return`(${coefficient}x)`
}else{
return`(${coefficient}x^${exponent})`
}
})
.filter((x)=>x!=='0')
.reverse()
.join(' + ')
}
/**
* Function to display polynomial in terms of x
* @returns {String} of polynomial representation in terms of x
*/
display(){
returnthis.polynomial
}
/**
* Function to calculate the value of the polynomial by substituting variable x
* @param {Number} value
*/
evaluate(value){
returnthis.coefficientArray.reduce((result,coefficient,exponent)=>{
returnresult+coefficient*Math.pow(value,exponent)
},0)
}
}
export{Polynomial}