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

Online Help

RandomTools

  

GenerateSimilar

  

create a random expression similar to the one given

 

Calling Sequence

Parameters

Description

Examples

Compatibility

Calling Sequence

GenerateSimilar( expr )

Parameters

expr

-

integer, float, polynomial, or general expression

Description

• 

The GenerateSimilar command produces a new expression that is similar to the given expression expr. The structure and variables in the original expression are preserved, but new constants and coefficients replace the initial ones. The random floating-point numbers and integers in the new expression are the same magnitude as in the original.

• 

Trig functions are not always preserved: sin and cos can switch, sec and csc can switch, and tan and cot can switch. The inverse trig functions are paired and can switch in the same way.

• 

Inputting a polynomial that can be factored and has integer roots returns a polynomial of the same order that can be factored and has integer roots.

• 

If a polynomial is input without integer roots then a polynomial up to the same degree as the input polynomial with random coefficients up to the same order of magnitude as the largest integer in the input expression is returned.

• 

Numerators and denominators of input rational expressions are replaced in the same way as polynomials with the additional feature that if the numerator and denominator have a common root then the returned rational expression also has a shared root in its numerator and denominator.

• 

If a singular square matrix is input then a singular square matrix is output. Inputting upper triangular, lower triangular, diagonal, symmetric, hermitian, or antisymmetric matrices returns the same type. Otherwise the elements of the output matrix are generated individually from each element of the input matrix.

• 

Rational and integer exponents of functions or expressions (other than exponential functions) are preserved.

• 

If an integral is passed into the function then the resultant integral will be solvable using the same integration technique (u substitution, partial fractions, trig substitution, integration by parts).

• 

If an equation is passed into GenerateSimilar then a similar equation is output: radical equations produce radical equations, polynomial equations produce polynomial equations, logarithmic equations produce logarithmic equations, and exponential equations produce exponential equations.

• 

Sums over values of binomial or poisson probability distributions produce sums over values of binomial or poisson probability distributions respectively.

• 

Expectation value of a function over a binomial or poisson probability distribution returns an expectation value of a similar function over a binomial or poisson probability distribution respectively.

• 

Integrals over values of exponential or gaussian probability distributions return integrals over values of exponential or gaussian probability distributions respectively.

• 

Expectation value of a function over an exponential or gaussian probability distribution returns an expectation value of a similar function over an exponential or gaussian probability distribution respectively.

• 

Parametrizations of circles, ellipses and cycloids return parametrizations of circles, ellipses and cycloids.

• 

Differential equations should not be input into GenerateSimilar; for differential equations use GenerateSimilarODE.   

Examples

(1)

The cube on the sin function is preserved.

(2)

Inputting a factorable polynomial returns a factorable polynomial..

(3)

(4)

(5)

A polynomial without integer roots returns a polynomial with random coefficients

(6)

(7)

Factorable numerators and denominators remain factorable and if a factor is shared between the numerator and denominator then the resultant rational function will share a factor between numerator and denominator.

(8)

(9)

(10)

(11)

(12)

(13)

Singular matrices return singular matrices.

(14)

(15)

(16)

Diagonal matrices return diagonal matrices.

(17)

(18)

Upper triangular matrices return upper triangular matrices.

(19)

(20)

Lower triangular matrices return lower triangular matrices.

(21)

(22)

Symmetric matrices return symmetric matrices.

(23)

(24)

Hermitian matrices return hermitian matrices.

(25)

(26)

Skew-symmetric matrices return skew-symmetric matrices.

(27)

(28)

If the matrix doesn't fall into one of the above categories GenerateSimilar is mapped to every element in the matrix

(29)

(30)

Integration technique: u substitution.

(31)

Integration technique: partial fractions.

(32)

Integration technique: trig substitution.

(33)

(34)

(35)

Integration technique: integration by parts.

(36)

(37)

(38)

(39)

(40)

(41)

Integration resulting in an erf function will give back integration resulting in an erf function.

(42)

(43)

(44)

Integration resulting in an Si function will give back integration resulting in an Si function.

(45)

(46)

(47)

Integration that results in an arctan function will give back integration resulting in an arctan function.

(48)

(49)

(50)

A double integral will produce a double integral;

(51)

(52)

A polynomial equation will produce a polynomial equation. If the input equation has integer roots the output equation will have integer roots.

(53)

(54)

(55)

(56)

Radical equations with rational solutions will produce radical equations with rational solutions or no solutions.

(57)

(58)

(59)

(60)

(61)

(62)

(63)

(64)

(65)

(66)

(67)

(68)

(69)

(70)

(71)

(72)

(73)

(74)

(75)

(76)

(77)

(78)

(79)

(80)

(81)

(82)

(83)

(84)

Trig equations in forms that can be solved without a calculator produce trig equations that can be solved without a calculator.

(85)

(86)

(87)

(88)

(89)

(90)

(91)

(92)

(93)

(94)

(95)

(96)

Logarithmic equations that are easily solvable without a calculator return logarithmic equations that can be easily solved without a calculator.

(97)

(98)

(99)

(100)

(101)

(102)

(103)

(104)

Exponential equations that can be easily solved without a calculator return exponential equations that can be easily solved without a calculator.

(105)

(106)

(107)

(108)

Complex polynomial equations with roots that have integer real and imaginary parts produce complex polynomial equations with integer real and imaginary roots.

(109)

(110)

(111)

(112)

Absolute value equations produce absolute value equations.

(113)

(114)

(115)

(116)

(117)

(118)

(119)

(120)

Equations of circles return equations of circles.

(121)

(122)

Equations of ellipses return equations of ellipses.

(123)

(124)

Equations of hyperbolas return equations of hyperbolas.

(125)

(126)

Probability of measuring less than a certain amount of successes from a binomial distribution.

(127)

Probability of measuring more than a certain amount of successes from a binomial distribution.

(128)

Expectation value of a binomial distribution.

(129)

Probability of measuring an event of a poisson distribution within a certain amount of time.

(130)

Probability of not measuring an event of a poisson distribution within a certain amount of time.

(131)

Expectation value of a poisson distribution.

(132)

Probability of measuring the time between poisson events to be less than a certain value.

(133)

Probability of measuring the time between poisson events to be more than a certain value.

(134)

Expectation value of an exponential distribution.

(135)

Probability of measuring less than a certain value for a gaussian distribution.

(136)

Probability of measuring more than a certain value for a gaussian distribution.

(137)

Expectation value of a gaussian distribution.

(138)

Parametrization of a circle returns a parametrization of a circle.

(139)

Parametrization of an ellipse returns a parametrization of an ellipse.

(140)

Parametrization of a cycloid returns a parametrization of a cycloid.

(141)

Compatibility

• 

The RandomTools[GenerateSimilar] command was introduced in Maple 2020.

• 

For more information on Maple 2020 changes, see Updates in Maple 2020.

See Also

HowDoI,WorkWithRandomGenerators

InertForm

rand

RandomTools

RandomTools[Generate]

RandomTools[GenerateSimilarODE]

randpoly

 


Download Help Document