Post Reply 
How would I solve this?
06-26-2016, 01:27 PM
Post: #1
How would I solve this?
Is there a way to solve for x in the following equation without simplifying at all?

14.78 + 5X + 6(3.42) + 2.23(X-4) = 0
Find all posts by this user
Quote this message in a reply
06-26-2016, 02:12 PM
Post: #2
RE: How would I solve this?
(06-26-2016 01:27 PM)MattH Wrote:  Is there a way to solve for x in the following equation without simplifying at all?

14.78 + 5X + 6(3.42) + 2.23(X-4) = 0

This should work in CAS. Please note the lower case 'x'

solve((14.78+5*x+20.52+2.23*(x-4)) = 0,x)

Result {−3.64868603043}

Cheers, Terje
Find all posts by this user
Quote this message in a reply
06-26-2016, 07:59 PM
Post: #3
RE: How would I solve this?
Try this in HOME:

solve("14.78 + 5*X + 6*(3.42) + 2.23*(X-4) = 0,X");

Notice: Implicit multiplications are expanded using the * symbol. Since the CAS (lower case) solve command is used, quotation marks are required in HOME.

-Dale-
Find all posts by this user
Quote this message in a reply
06-27-2016, 09:34 AM
Post: #4
RE: How would I solve this?
Great. Thanks to the both of you!
Find all posts by this user
Quote this message in a reply
Post Reply 




User(s) browsing this thread: 1 Guest(s)