<sequence>
<sequence> is a Math
component that generates a sequence of numbers, math expressions, or letters.
Attributes and Properties
Attributes for <sequence>
Other (12)
asListboolean. Default value: true. Whether to render the items separated by commas (true) or with no separator (false).
avoidScientificNotationWhether to render numbers in full decimal form rather than scientific notation.
displayDecimalsNumber of decimal places to display when rendering this number.
displayDigitsNumber of significant digits to display when rendering this number.
displaySmallAsZeroThreshold 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.
padZerosWhether 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.
| Value | Description |
|---|---|
number | A sequence of numeric values. |
math | A sequence of math expressions (allows symbolic from/to/step). |
letters | A sequence of letters (single-letter or multi-letter labels). |
Common to all components (9)
copyreference. Create an independent copy of another component by reference. Enter a references a $name.
disabledboolean. Default value: false. Whether this component is disabled and cannot be interacted with.
extendreference. Extend another component by reference, inheriting its children and attributes. Enter a reference as $name.
fixedDefault value: false. Whether this component's value is fixed and cannot be modified.
fixLocationboolean. Default value: false. Whether this component's location is fixed (preventing it from being moved while still allowing other modifications).
hideboolean. Default value: false. Whether to hide this component from the rendered output.
isResponseboolean. Default value: false. Whether this component is treated as a response for the purposes of assessment.
nametext. The name used to reference this component from elsewhere in the document.
styleNumberinteger. 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.doenetMLtext. The DoenetML source code that produced this component.
$s.hideboolean. Whether to hide this component from the rendered output.
$s.isResponseboolean. Whether this component is treated as a response for the purposes of assessment.
$s.styleNumberinteger. 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 to with step size .
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.