Skip to main content
10-Marble
July 9, 2022
Solved

Problemas con Mathcad prime 8 / Mathcad 8 update problem

  • July 9, 2022
  • 1 reply
  • 2422 views

Hola a todos, acabo de actualizar a la versión 8 prime y ahora no puedo encontrar el vector de respuestas.
¿Tengo que usar el bloque de resolución obligado? personalmente me parece más cómodo la herramienta "solve, x" 

 

Hi everyone, I just upgraded to 8 prime and now I can't find the response vector.
Do I have to use the forced resolution block? I personally find the "solve, x" tool more comfortable

 

CJ_10336197_1-1657361647593.png

 

Best answer by LucMeekes

The variable (2 element vector) S is symbolically defined, but numerically undefined, because next to the unit cm, it contains a variable cm that is undefined.

Now you could define this cm as being 1 cm, but I think you should approach the matter in a different way.

Using 'solve,x' means that you are using the symbolic processor. You'd normally do that only if you are interested in the symbolic solution. And for your particular problem there are two solutions, due to the fact it's a quadratic expression in x.

Without using a solve block, you can use the function root, which needs a guess value:

LucMeekes_0-1657372533361.png

or two additional parameters to define the range in which x is to be found:

LucMeekes_1-1657372663267.png

The other method does use  the symbolics, but with all parameters numerically undefined:

LucMeekes_2-1657372789694.png

Note that while Prime allows magic numbers and units in symbolics, it makes a mess of the result too often, as in your case where it changed the unit cm to a variable.

In this case I would advise to use a variable name for 0.0030 and 0.85. A symbolic expression should ideally only contain variables and constants (1, 2, or e, pi), but never any 'magic numbers' (Unnamed numerical constants as described here) such as your 0.0030 and 0.85.

It might look like:

LucMeekes_3-1657373171097.png

 

Success!
Luc

 

 

1 reply

23-Emerald IV
July 9, 2022

You should attach your Prime 8 worksheet file.

(Debe adjuntar el archivo de la hoja de trabajo de Prime 8.)

 

Success!
Luc

10-Marble
July 9, 2022

Oh, I understand, it's my first post.
Thank you.

LucMeekes23-Emerald IVAnswer
23-Emerald IV
July 9, 2022

The variable (2 element vector) S is symbolically defined, but numerically undefined, because next to the unit cm, it contains a variable cm that is undefined.

Now you could define this cm as being 1 cm, but I think you should approach the matter in a different way.

Using 'solve,x' means that you are using the symbolic processor. You'd normally do that only if you are interested in the symbolic solution. And for your particular problem there are two solutions, due to the fact it's a quadratic expression in x.

Without using a solve block, you can use the function root, which needs a guess value:

LucMeekes_0-1657372533361.png

or two additional parameters to define the range in which x is to be found:

LucMeekes_1-1657372663267.png

The other method does use  the symbolics, but with all parameters numerically undefined:

LucMeekes_2-1657372789694.png

Note that while Prime allows magic numbers and units in symbolics, it makes a mess of the result too often, as in your case where it changed the unit cm to a variable.

In this case I would advise to use a variable name for 0.0030 and 0.85. A symbolic expression should ideally only contain variables and constants (1, 2, or e, pi), but never any 'magic numbers' (Unnamed numerical constants as described here) such as your 0.0030 and 0.85.

It might look like:

LucMeekes_3-1657373171097.png

 

Success!
Luc