Open edX supports plugins called XBlocks that adds new types of content. It is possible that the exact thing you’re looking for is provided by a custom plugin. You can see a directory of such XBlocks here
Could you share a sample link for this use case? How is it different from a regular text input?
It’s in Unit 1 > Homework 1 >3. Decision Boundaries :
And in the following exercise :
Text input would fail to validate all correct numerical answers, for example (1/3, 1/3), (0.33, 0.33) and (0.333, 0.333) could all be considered valid answers to a question (as well as many others possibilities).
What I’m thinking about is :
either let the author ask for a python tuple or list in a numerical input problem (= (2, 2))
or let the author specify a pattern e.g. (x_1, x_2) or [x_1, x_2, x_3] as well as the expected values for x_1, x_2, x_3… Then extract the values of x_1, x_2… from the user input and verify each of them as if it was a numerical input problem