How to solve an equation with constant represented by letter
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
How to solve an equation with constant represented by letter
i dont't know how to solve an equation with constant like 'A' or 'B'
for example:
x+B=A
solve, x
it is available in MATHCAD 15, but not in Prime
how can i realize this function?
Solved! Go to Solution.
- Labels:
-
Calculus_Derivatives
- Tags:
- equation solve
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
How can you input the "(x y)" ?
Its a matrix (1 row, 2 columns)
Keystrokes:
Ctrl-M (or simply type [)
x
Shift-Space
y
:
....
In Prime you get square brackets to indicate a matrix and you also may simply type square brackets to create a matrix.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Prime can solve this, especially since it's pretty trivial.
Type the following
A:=5
B:=7
A=x+B (the equals sign here is CTRL-=)
Then, go to the Symbolics menu and click on the right arrow operator (→), which will place it after A=x+B (ignore the answer for now)
Go back to the Symbolics menu and click on the operator solve, which will place it above the right arrow operator, then type ,x
Hit the Enter key to get the answer of -2.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
@Ethan.Z wrote:
i dont't know how to solve an equation with constant like 'A' or 'B'
for example:
x+B=A
solve, x
it is available in MATHCAD 15, but not in Prime
how can i realize this function?
Its the same in Prime as in MC15
Just use the symbolics if you are looking for a symbolic solution
Or use the root-function or a solve block for a numeric solution (you'll have to provide values for A and B in that case)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Thanks, it works!
But how about the equation set like this?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
The solve block in Prime only works with numeric items, that is, it doesn't work with symbols alone.
If you provide numerical values for A and B, the solve block will give the numeric answers for x and y.
If you want to solve it purely symbolic (with no numeric values for A and B), use the symbolic solver:
You can even assign the results to the variables you solve for:
Note that the expression involving solve turns red. That is because the numeric processor complains that A and B are (numerically) unknown. But the symbolic processor doesn't mind, and symbolically evaluates x and y without problems.
Success!
Luc
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Thanks, i solved the issue.
One more question:
How can you input the "(x y)" ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
How can you input the "(x y)" ?
Its a matrix (1 row, 2 columns)
Keystrokes:
Ctrl-M (or simply type [)
x
Shift-Space
y
:
....
In Prime you get square brackets to indicate a matrix and you also may simply type square brackets to create a matrix.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
- Tags:
- Electric_circuit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
- Tags:
- Prime_6.0
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
but why i can't get the same result as you? I checked that everything is the same.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Just change the on/off of the prime table menu.
- Tags:
- Prime_6.0
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
it works.
Thanks a lot!