About stdlib...
We believe in a future in which the web is a preferred environment for numerical computation. To help realize this future, we've built stdlib. stdlib is a standard library, with an emphasis on numerical and scientific computation, written in JavaScript (and C) for execution in browsers and in Node.js.
The library is fully decomposable, being architected in such a way that you can swap out and mix and match APIs and functionality to cater to your exact preferences and use cases.
When you use stdlib, you can be absolutely certain that you are using the most thorough, rigorous, well-written, studied, documented, tested, measured, and high-quality code out there.
To join us in bringing numerical computing to the web, get started by checking us out on GitHub, and please consider financially supporting stdlib. We greatly appreciate your continued support!
Test if a value is a square triangular number.
A square triangular number is an integer value which is both a square number and a triangular number.
Triangular numbers can be computed using the following formula
-->for n >= 0
.
By analogy with the square root of x
, one can define the positive triangular root of x
such that T_n = x
Accordingly, an integer x
is a triangular number if and only if 8x+1
is a square number.
npm install @stdlib/assert-is-square-triangular-number
var isSquareTriangularNumber = require( '@stdlib/assert-is-square-triangular-number' );
Tests if a value
is a square triangular number.
var Number = require( '@stdlib/number-ctor' );
var bool = isSquareTriangularNumber( 36.0 );
// returns true
bool = isSquareTriangularNumber( new Number( 36.0 ) );
// returns true
bool = isSquareTriangularNumber( 3.14 );
// returns false
bool = isSquareTriangularNumber( -5.0 );
// returns false
bool = isSquareTriangularNumber( NaN );
// returns false
bool = isSquareTriangularNumber( null );
// returns false
Tests if a value
is a primitive square triangular number.
var Number = require( '@stdlib/number-ctor' );
var bool = isSquareTriangularNumber.isPrimitive( 36.0 );
// returns true
bool = isSquareTriangularNumber.isPrimitive( new Number( 36.0 ) );
// returns false
Tests if a value
is a Number
object having a value which is a square triangular number.
var Number = require( '@stdlib/number-ctor' );
var bool = isSquareTriangularNumber.isObject( 36.0 );
// returns false
bool = isSquareTriangularNumber.isObject( new Number( 36.0 ) );
// returns true
- Return values are not reliable for numbers greater than
1125899906842624
.
var Number = require( '@stdlib/number-ctor' );
var isSquareTriangularNumber = require( '@stdlib/assert-is-square-triangular-number' );
var bool = isSquareTriangularNumber( 36.0 );
// returns true
bool = isSquareTriangularNumber( new Number( 36.0 ) );
// returns true
bool = isSquareTriangularNumber( 0.0 );
// returns true
bool = isSquareTriangularNumber( 1.0 );
// returns true
bool = isSquareTriangularNumber( 3.14 );
// returns false
bool = isSquareTriangularNumber( -5.0 );
// returns false
bool = isSquareTriangularNumber( NaN );
// returns false
bool = isSquareTriangularNumber( '0.5' );
// returns false
bool = isSquareTriangularNumber( null );
// returns false
-
@stdlib/assert-is-integer
: test if a value is a number having an integer value. -
@stdlib/assert-is-number
: test if a value is a number. -
@stdlib/assert-is-square-number
: test if a value is a square number. -
@stdlib/assert-is-triangular-number
: test if a value is a triangular number.
This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.
For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.
See LICENSE.
Copyright © 2016-2024. The Stdlib Authors.