
Security News
GitHub Actions Supply Chain Attack Puts Thousands of Projects at Risk
A compromised GitHub Action exposed secrets in CI/CD logs, putting thousands of projects at risk and forcing developers to urgently secure their workflows.
goal-seek-big-number
Advanced tools
goal-seek is a javascript library that can be used to solve for the value of an independent variable: "x"; of a function: "f(x)"; such that f(x) equals some defined goal
goal-seek is a javascript library that can be used to solve for the value of an independent variable: "x"; of a function: "f(x)"; such that f(x) equals some defined goal. In other words: do you know the desired output of a function but not the input to yield such an output? If so, then use this goal seek!
Currently, this goal seek uses Steffensen's Method to find the root of the error.
goal-seek-big-number
is an npm package, so installation is as easy as:
$ npm install --save goal-seek-big-number
The package exports two error types, the function parameter type and one function, goalSeek
as a default export:
export const IsNanError = TypeError('resulted in NaN');
export const FailedToConvergeError = Error('failed to converge');
export type Params = {
fn: (...inputs: any[]) => BigNumber;
fnParams: any[];
percentTolerance: BigNumber;
maxIterations: number;
maxStep: BigNumber;
goal: BigNumber;
independentVariableIdx: number;
};
const goalSeek = ({
fn,
fnParams,
percentTolerance,
maxIterations,
maxStep,
goal,
independentVariableIdx,
}: Params): BigNumber => {
...
}
export default goalSeek;
The goalSeek
function takes one object argument with the following keys:
fn
- the function, "f(x)" that is being evaluated.fnParams
- an array of parameters that are to be used as inputs to fn
.percentTolerance
- the acceptable error range to the stated goal. For example, if goal: 100
and percentTolerance: 1
, then any values in the range [99, 101] will be accepted as correct (± 1% of 100).maxIterations
- the maximum number of attempts to make.maxStep
- the maximum magnitude step size to move the independent variable x
for the next guess.goal
- the desired output of the fn
.independentVariableIdx
- the index position of the independent variable x
in the fnParams
array.To use the function, for example, with a simple linear equeation:
import BigNumber from 'bignumber.js'
let x = 10;
const fn = (x: BigNumber): BigNumber => x.plus(2);
const fnParams = [new BigNumber(x)];
try {
const result = goalSeek({
fn,
fnParams,
percentTolerance: new BigNumber(1),
maxIterations: 1000,
maxStep: new BigNumber(10),
goal: new BigNumber(100),
independentVariableIdx: 0
})
// result => 98
} catch(e) {
}
This library will throw one of two errors: IsNanError
or FailedToConvergeError
.
IsNanError
is thrown whenever the result of fn
returns a value that is not a BigNumber. For example, if fn
is Math.log
, and the value -1
is input goalSeek
with throw IsNanError
.
FailedToConvergeError
is thrown when no acceptable independent variable can be found. For example, if fn
is x * x
and goal is -1
the library will fail to converge and throw FailedToConvergeError
.
import goalSeek from 'goal-seek';
const fn = (x,y,z) => x * y * z;
const fnParams = [4,5,6];
try {
const result = goalSeek({
fn,
fnParams,
percentTolerance: 1,
maxIterations: 1000,
maxStep: 1,
goal: 140,
independentVariableIdx: 2
});
console.log(`result: ${result}`);
} catch (e) {
console.log('error', e);
}
// result: 7
This work is licensed under MIT.
The MIT License (MIT)
Copyright (c) 2020 Chaitanya Potti
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
This package is derivative of the amazing work done by Adam Hanna and his original package
FAQs
goal-seek is a javascript library that can be used to solve for the value of an independent variable: "x"; of a function: "f(x)"; such that f(x) equals some defined goal
The npm package goal-seek-big-number receives a total of 1 weekly downloads. As such, goal-seek-big-number popularity was classified as not popular.
We found that goal-seek-big-number demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
A compromised GitHub Action exposed secrets in CI/CD logs, putting thousands of projects at risk and forcing developers to urgently secure their workflows.
Research
Security News
A malicious Maven package typosquatting a popular library is secretly stealing OAuth credentials on the 15th of each month, putting Java developers at risk.
Security News
Socket and Seal Security collaborate to fix a critical npm overrides bug, resolving a three-year security issue in the JavaScript ecosystem's most popular package manager.