RandomTools Flavor: positive
describe a flavor of a random positive rational number
Calling Sequence
Parameters
Description
Examples
positive
positive(opts)
opts
-
equation(s) of the form option = value where option is one of range, character, or denominator; specify options for the random positive rational number
The flavor positive describes a random positive rational number in a particular range.
To describe a flavor of a random positive rational number, use either positive or positive(opts) (where opts is described following) as the argument to RandomTools[Generate] or as part of a structured flavor.
By default, the flavor positive describes a random rational number in the range 0..1 (excluding 0) with a denominator of 999999999989, or the integer 1.
You can modify the properties of a random rational number by using the rational(opts) form of this flavor. The opts argument can contain one or more of the following equations.
range = b
This option describes the right endpoint of the range from which the random rational number is chosen. The right endpoint must be of type rational and positive and it describes a random rational number in the interval 0..b, where 0 is excluded and the inclusiveness of b is determined by the character option.
character = open or closed
This option specifies whether to include the right endpoint of the range from which the random rational number is chosen. The default value for this option is closed.
denominator = posint
This option specifies the positive integer to use as the denominator for the random rational number that is generated. Note: The return value may be an integer, or a fraction with a denominator that is a factor of the specified integer.
The default denominator is 999999999989.
In the case of the closed interval 0..1, the denominator is prime. Therefore, a result of 13 cannot occur. Instead, you can specify a denominator that is highly composite. For example, 720720.
with⁡RandomTools:
Generate⁡positive
395718860535999999999989
Generate⁡positive⁡range=5
3224811806586999999999989
Generate⁡positive⁡range=12,denominator=720720
28937144144
Generate⁡positive⁡denominator=10
35
sort⁡seq⁡Generate⁡positive⁡denominator=6,character=closed,i=1..10,numeric
16,13,13,12,12,23,23,56,56,1
Generate⁡list⁡positive⁡range=132,10
3273442022562999999999989,5574741247156999999999989,1339845829803999999999989,2584712523357999999999989,6104959978546999999999989,1627430692015999999999989,33467275626999999999989,5145196841900999999999989,1686443564877999999999989,5197063808656999999999989
seq⁡Generate⁡positive⁡range=7,denominator=720720,i=1..10
4238413720720,857911360360,1074583180180,430957240240,886631360360,579803102960,91609102960,913459720720,39779180180,972275144144
Matrix⁡3,3,Generate⁡positive⁡denominator=24⁢identical⁡x+positive⁡denominator=16,makeproc=true
x3+58x8+11617⁢x24+3165⁢x24+5165⁢x12+585⁢x12+1116x12+125⁢x6+1516x12+916
See Also
convert/rational
flavor/structured
rand
RandomTools
RandomTools[Generate]
type/fraction
type/integer
type/positive
type/rational
Download Help Document