2022-07-19 00:08:49 +00:00
|
|
|
import assert from 'assert'
|
2022-08-01 10:09:32 +00:00
|
|
|
import PocomathInstance from '../src/core/PocomathInstance.mjs'
|
2022-07-22 20:49:14 +00:00
|
|
|
import math from '../src/pocomath.mjs'
|
2022-07-19 00:08:49 +00:00
|
|
|
|
|
|
|
describe('The default full pocomath instance "math"', () => {
|
2022-08-01 15:28:21 +00:00
|
|
|
it('has no unexpected undefined types', () => {
|
2022-07-30 02:43:24 +00:00
|
|
|
const undef = math.undefinedTypes()
|
|
|
|
if (undef.length) {
|
2022-08-01 15:28:21 +00:00
|
|
|
console.log('NOTE: Found undefined types', undef)
|
2022-07-30 02:43:24 +00:00
|
|
|
}
|
2022-08-01 15:28:21 +00:00
|
|
|
assert.strictEqual(undef.length, 1) // Mentioning 'Fraction' but not using
|
2022-07-30 02:43:24 +00:00
|
|
|
})
|
|
|
|
|
2022-08-01 10:09:32 +00:00
|
|
|
it('has a built-in typeOf operator', () => {
|
|
|
|
assert.strictEqual(math.typeOf(42), 'NumInt')
|
|
|
|
assert.strictEqual(math.typeOf(-1.5), 'number')
|
|
|
|
assert.strictEqual(math.typeOf(-42n), 'bigint')
|
|
|
|
assert.strictEqual(math.typeOf(undefined), 'undefined')
|
2022-08-06 15:27:44 +00:00
|
|
|
assert.strictEqual(math.typeOf({re: 15n, im: -2n}), 'Complex<bigint>')
|
|
|
|
assert.strictEqual(math.typeOf({re: 6.28, im: 2.72}), 'Complex<number>')
|
2022-08-01 10:09:32 +00:00
|
|
|
})
|
|
|
|
|
2022-08-12 06:51:47 +00:00
|
|
|
it('can determine the return types of operations', () => {
|
|
|
|
assert.strictEqual(math.returnTypeOf('negate', 'number'), 'number')
|
2022-08-12 16:10:53 +00:00
|
|
|
assert.strictEqual(math.returnTypeOf('negate', 'NumInt'), 'NumInt')
|
2022-08-12 06:51:47 +00:00
|
|
|
})
|
|
|
|
|
2022-07-19 03:10:55 +00:00
|
|
|
it('can subtract numbers', () => {
|
|
|
|
assert.strictEqual(math.subtract(12, 5), 7)
|
2022-08-22 16:38:23 +00:00
|
|
|
assert.throws(() => math.subtract(3n, 1.5), 'TypeError')
|
2022-07-19 03:10:55 +00:00
|
|
|
})
|
|
|
|
|
2022-07-19 00:08:49 +00:00
|
|
|
it('can add numbers', () => {
|
|
|
|
assert.strictEqual(math.add(3, 4), 7)
|
|
|
|
assert.strictEqual(math.add(1.5, 2.5, 3.5), 7.5)
|
|
|
|
assert.strictEqual(math.add(Infinity), Infinity)
|
2022-08-01 10:09:32 +00:00
|
|
|
assert.throws(() => math.add(3n, -1.5), TypeError)
|
2022-07-19 00:08:49 +00:00
|
|
|
})
|
2022-07-19 03:10:55 +00:00
|
|
|
|
|
|
|
it('can negate numbers', () => {
|
|
|
|
assert.strictEqual(math.negate(-1), 1)
|
|
|
|
assert.strictEqual(math.add(10, math.negate(3)), 7)
|
|
|
|
})
|
2022-07-19 16:52:16 +00:00
|
|
|
|
|
|
|
it('can be extended', () => {
|
2022-08-01 10:09:32 +00:00
|
|
|
const stretch = PocomathInstance.merge(math) // clone to not pollute math
|
|
|
|
stretch.installType('stringK', {
|
2022-07-28 05:28:40 +00:00
|
|
|
test: s => typeof s === 'string' && s.charAt(0) === 'K',
|
|
|
|
before: ['string']
|
|
|
|
})
|
2022-08-01 10:09:32 +00:00
|
|
|
stretch.install({
|
2022-07-24 19:52:05 +00:00
|
|
|
add: {
|
|
|
|
'...stringK': () => addends => addends.reduce((x,y) => x+y, '')
|
|
|
|
},
|
|
|
|
})
|
2022-08-01 10:09:32 +00:00
|
|
|
assert.strictEqual(stretch.add('Kilroy','K is here'), 'KilroyK is here')
|
2022-07-19 16:52:16 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
it('handles complex numbers', () => {
|
|
|
|
const norm13 = {re: 2, im: 3}
|
|
|
|
assert.deepStrictEqual(math.complex(2,3), norm13)
|
|
|
|
assert.deepStrictEqual(math.complex(2), math.complex(2,0))
|
|
|
|
assert.deepStrictEqual(math.add(2, math.complex(0,3)), norm13)
|
2022-07-30 02:43:24 +00:00
|
|
|
assert.deepStrictEqual(
|
|
|
|
math.subtract(math.complex(1,1), math.complex(2,-2)),
|
|
|
|
math.complex(-1,3))
|
2022-08-01 10:09:32 +00:00
|
|
|
assert.strictEqual(math.negate(math.complex(3, 8)).im, -8)
|
2022-07-19 18:54:22 +00:00
|
|
|
assert.deepStrictEqual(
|
|
|
|
math.subtract(16, math.add(3, math.complex(0,4), 2)),
|
|
|
|
math.complex(11, -4))
|
|
|
|
})
|
|
|
|
|
|
|
|
it('handles bigints', () => {
|
|
|
|
assert.strictEqual(math.negate(5n), -5n)
|
|
|
|
assert.strictEqual(math.subtract(12n, 5n), 7n)
|
|
|
|
assert.strictEqual(math.add(15n, 25n, 35n), 75n)
|
|
|
|
assert.strictEqual(math.add(10n, math.negate(3n)), 7n)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('handles Gaussian integers', () => {
|
|
|
|
const norm13n = {re: 2n, im: 3n}
|
|
|
|
assert.deepStrictEqual(math.complex(2n,3n), norm13n)
|
|
|
|
assert.deepStrictEqual(math.complex(2n), math.complex(2n, 0n))
|
|
|
|
assert.deepStrictEqual(math.add(2n, math.complex(0n, 3n)), norm13n)
|
|
|
|
assert.deepStrictEqual(
|
|
|
|
math.subtract(16n, math.add(3n, math.complex(0n,4n), 2n)),
|
|
|
|
math.complex(11n, -4n))
|
|
|
|
assert.strictEqual(math.negate(math.complex(3n, 8n)).im, -8n)
|
2022-07-19 16:52:16 +00:00
|
|
|
})
|
2022-08-01 23:24:20 +00:00
|
|
|
|
|
|
|
it('creates chains', () => {
|
|
|
|
const mychain = math.chain(7).negate()
|
|
|
|
assert.strictEqual(mychain.value, -7)
|
|
|
|
mychain.add(23).sqrt().lcm(10)
|
|
|
|
assert.strictEqual(mychain.value, 20)
|
|
|
|
assert.strictEqual(math.mean(3,4,5), 4)
|
|
|
|
assert.throws(() => math.chain(3).mean(4,5), /chain function.*split/)
|
|
|
|
assert.throws(() => math.chain(3).foo(), /Unknown operation/)
|
|
|
|
})
|
|
|
|
|
2022-08-02 07:47:37 +00:00
|
|
|
it('calls plain factorial function', () => {
|
|
|
|
assert.strictEqual(math.factorial(4), 24n)
|
|
|
|
assert.strictEqual(math.factorial(7n), 5040n)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('calculates binomial coefficients', () => {
|
|
|
|
assert.strictEqual(math.choose(6, 3), 20)
|
|
|
|
assert.strictEqual(math.choose(21n, 2n), 210n)
|
|
|
|
})
|
|
|
|
|
2022-08-05 12:48:57 +00:00
|
|
|
it('calculates multi-way gcds and lcms', () => {
|
|
|
|
assert.strictEqual(math.gcd(30,105,42), 3)
|
2022-08-06 15:27:44 +00:00
|
|
|
const gaussianLCM = math.lcm(
|
|
|
|
math.complex(2n,1n), math.complex(1n,1n), math.complex(0n,1n))
|
|
|
|
assert.strictEqual(math.associate(gaussianLCM, math.complex(1n,3n)), true)
|
2022-08-05 12:48:57 +00:00
|
|
|
})
|
|
|
|
|
2022-07-19 00:08:49 +00:00
|
|
|
})
|