Referencesequence

<sequence>

Generates a sequence of numbers, math expressions, or letters

<sequence> is a Math component that generates a sequence of numbers, math expressions, or letters.

Attributes and Properties

Attributes for <sequence>

Other (12)
asList

boolean. Default value: true. Whether to render the items separated by commas (true) or with no separator (false).

avoidScientificNotation

Whether to render numbers in full decimal form rather than scientific notation.

displayDecimals

Number of decimal places to display when rendering this number.

displayDigits

Number of significant digits to display when rendering this number.

displaySmallAsZero

Threshold below which numbers are displayed as zero.

_componentListWithSelectableType. Values to exclude from the sequence.

_componentWithSelectableType. The first value in the sequence.

integer. The number of values in the sequence.

padZeros

Whether to pad displayed numbers with trailing zeros to fill the requested digits/decimals.

math. The increment between successive values in the sequence.

_componentWithSelectableType. The last value in the sequence. Used together with from to determine length when length is not specified.

keyword. The kind of values in the sequence.

ValueDescription
numberA sequence of numeric values.
mathA sequence of math expressions (allows symbolic from/to/step).
lettersA sequence of letters (single-letter or multi-letter labels).
Common to all components (9)
copy

reference. Create an independent copy of another component by reference. Enter a references a $name.

disabled

boolean. Default value: false. Whether this component is disabled and cannot be interacted with.

extend

reference. Extend another component by reference, inheriting its children and attributes. Enter a reference as $name.

fixed

Default value: false. Whether this component's value is fixed and cannot be modified.

fixLocation

boolean. Default value: false. Whether this component's location is fixed (preventing it from being moved while still allowing other modifications).

hide

boolean. Default value: false. Whether to hide this component from the rendered output.

isResponse

boolean. Default value: false. Whether this component is treated as a response for the purposes of assessment.

name

text. The name used to reference this component from elsewhere in the document.

styleNumber

integer. Default value: 1. The style number used to select this component's visual styling from the available style definitions.

Properties for <sequence name="s">

Common to all components (4)
$s.doenetML

text. The DoenetML source code that produced this component.

$s.hide

boolean. Whether to hide this component from the rendered output.

$s.isResponse

boolean. Whether this component is treated as a response for the purposes of assessment.

$s.styleNumber

integer. The style number used to select this component's visual styling from the available style definitions.

Examples

Example: Default <sequence>

The default <sequence> lists values from 11 to 1010 with step size 11.


Example: Using a <sequence> with a <repeat>

A <sequence> can be used to define the iteration for a <repeat>. Another way to accomplish this would be to use the <repeatForSequence> component.


Example: the sum of a <sequence>

In the sample code below, the sum of all values in a sequence is obtained by nesting the <sequence/> in a <sum> component. This technique works for multiple sequence as well.

Attribute Examples

Attribute Example: from, to

Use the from and to attributes to specify the endpoints of the <sequence>.


Attribute Example: step

Use the step attribute to specify the stepping increment for the <sequence>


Attribute Example: length

Use the length attribute to specify the number of terms in the <sequence>.


Attribute Example: exclude

The exclude attribute excludes terms from the <sequence>.


Attribute Example: type

The type attribute takes as an input either number or letters, and defaults to number.