|
Solve this equation for x, (1 + x)^4=34.5 . I am interested in the math libraries you'd use.
the equation is MUCH SIMPLER (1 + x)^4=34.5
thanks
Started by Andrei on
, 10 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
If you mean "find a value for double x that satisfies the equation to the limits "find an equation of the form 'x ....
A similar question mean by "solve".
A system more suited to doing symbolic math (Mathematica?) is probably easier.
|
|
I have two simple while loops in my program that I feel ought to be math equations, but I'm struggling to convert them:
float a = someValue; int b = someOtherValue; int c = 0; while (a <= -b / 2) { c--; a += b; } while (a >= b / 2) { c++; a -= b...
Started by Sydius on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Assuming b is positive, abs(c) = floor(....
I think you want something like this:
c = ((int) a + b / 2 * sign(a)) / b
That should match your loops except for certain cases where b is odd because the range from -b/2 to b/2 is smaller than b when b is odd .
|
|
How would I write this math word problem into an equation ? help with math hw please? 10 points? I have to write this word problem into an equation, and then solve it. If someone can show me how they showed the work out too. And tell me how to do it too...
Started by puppylove931234 on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at yahoo):
Let x be the number (X=number), then
X + 1/8X =54
9/8X = 54
9X = 54 (8)
9X = 432
X = 432/9
X = 48
Hope it helps God bless! Let the number be x
then 1/8 of the number = x/8
sum of above two numbers is x + x/8 which is = 54
simplifying the left hand....
|
Ask your Facebook Friends
|
MATH-HELP! Rational Equation Word Problem!? Brandon can type a paper in 6 hours.If Carter helps him, they can type the complete paper in 4 hours.How long would it take Carter if he did all of the typing?
Cannot figure this on out! Some help would be amazing...
Started by Tyler jamal Jenkins on
, 1 posts
by 1 people.
Answer Snippets (Read the full thread at yahoo):
|
|
Maths equation help please!!!? I need help on how to work out the last step of this simultaneous equation.ok so this is the equation given:
5x+2y =13
x+2y = 9
i have worked out 4x= 1 so x = 1 and then i subsituted 1 into (x+2y = 9)
so i typed it x + 2...
Started by Lion on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at yahoo):
X isnt 1, use substition 5x + 2y = 13
x + 2y = 9
multiply the 2nd equation by -1
-1(x + 2y = 9)
-x - 2y = -9
add the resulting equation to the first equation, solving for x
5x + 2y = 13
-x - 2y = -9.
|
|
How to code a Javascript math equation? I am having trouble coding a simple math equation that I want to be displayed in a browser. The math equation is as follows. There will be two input boxes.
.02 * x(first number input by user) = y
y / z(second number...
Started by Titus on
, 2 posts
by 2 people.
Answer Snippets (Read the full thread at yahoo):
You may want to add JavaScript to detect if the input is ... .
I made a very basic outline of what the code could look like over here: http://pastebin.com/qpiUrrKM
It contains all the JavaScript in the head section with the HTML containing the form itself .
|
|
Hello,
i am calculating several values for time delay for input output port. From the coding below,i set two conditions which are if the x is even number, s=4500 and if x=odd, s =5000.There is no error when i'm run the code programming,but when i load...
Started by chibi41 on
, 12 posts
by 5 people.
Answer Snippets (Read the full thread at ccsinfo):
When you install MPLAB it should find.
Pleased to help, and be aknowledged.
Window to see variables.
|
|
Can you solve this greedy math equation? A candy shop is selling 1 candy for $1. You can exchange 3 candy wrapper for 1 candy. You have $15 dollars. How many candies can you get in total? And what aliment are you likely to develop from all this sugar ...
Started by Real Danny Steel on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at yahoo):
$15 buys 15 candies
15 wrappers gets 5 candies
5 candies gets you 1 more candy
total 21 candies and two wrappers Well since you have $15, you get 15 candies, and if you exchange 3 wrappers for i candy, you'll get an additional 5 so in total you get 20... .
|
|
Need a Math Editor to integrate to my application written on C# to be able to write math formulas. Can someone help me with this please? Some open source code will be great! Tell me steps, that integrate your suggested application to my application.
Started by Narek on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Much of the value will lie in....
If you want open source I recommend using Math from OpenOffice.org ( http math program.
I'm sure they have components that you can use.
Why don't you then just use Equation or MathType in our program.
|
|
Simplfy
1/(x+2)(x+3) + 1/(x+2)(x+3)(x+4)
Started by Your KD is BAD on
, 17 posts
by 9 people.
Answer Snippets (Read the full thread at bungie):
No need to be a smart ass I haven't taken a math course in a long time, so sorry for the stupid question, but don't you need that equation to equal something? Posted by: ChemicalEnvy
Posted by: Gman5434 through all the way to college.
|