positive - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


RandomTools Flavor: positive

describe a flavor of a random positive rational number

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

positive

positive(opts)

Parameters

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

Description

• 

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.

Examples

withRandomTools:

Generatepositive

395718860535999999999989

(1)

Generatepositiverange=5

3224811806586999999999989

(2)

Generatepositiverange=12,denominator=720720

28937144144

(3)

Generatepositivedenominator=10

35

(4)

sortseqGeneratepositivedenominator=6,character=closed,i=1..10,numeric

16,13,13,12,12,23,23,56,56,1

(5)

Generatelistpositiverange=132,10

3273442022562999999999989,5574741247156999999999989,1339845829803999999999989,2584712523357999999999989,6104959978546999999999989,1627430692015999999999989,33467275626999999999989,5145196841900999999999989,1686443564877999999999989,5197063808656999999999989

(6)

seqGeneratepositiverange=7,denominator=720720,i=1..10

4238413720720,857911360360,1074583180180,430957240240,886631360360,579803102960,91609102960,913459720720,39779180180,972275144144

(7)

Matrix3,3,Generatepositivedenominator=24identicalx+positivedenominator=16,makeproc=true

x3+58x8+11617x24+3165x24+5165x12+585x12+1116x12+125x6+1516x12+916

(8)

See Also

convert/rational

flavor/structured

rand

RandomTools

RandomTools[Generate]

type/fraction

type/integer

type/positive

type/rational