math question

Please support our C++ advertiser: Intel Parallel Studio Home
Reply

Join Date: Oct 2009
Posts: 6
Reputation: James19142 is an unknown quantity at this point 
Solved Threads: 0
James19142 James19142 is offline Offline
Newbie Poster

math question

 
-1
  #1
Oct 22nd, 2009
how do i solve this problem
r+5(r-2)=28
3(r+4)+5(r+2)=102
Reply With Quote Quick reply to this message  
Join Date: Nov 2008
Posts: 458
Reputation: Grn Xtrm will become famous soon enough Grn Xtrm will become famous soon enough 
Solved Threads: 37
Grn Xtrm's Avatar
Grn Xtrm Grn Xtrm is offline Offline
Posting Pro in Training
 
1
  #2
Oct 22nd, 2009
This question seemingly has nothing to do with c++. In the future dont post math related questions in the programming forums.
As for your problem, what does the question ask you to do? Do you have to solve for the variable r?
Check out my new band URL on facebook. I'm the bass player. :) Become a fan and leave comments if you like.
URL on facebook!
Reply With Quote Quick reply to this message  
Join Date: Dec 2008
Posts: 1,218
Reputation: firstPerson is just really nice firstPerson is just really nice firstPerson is just really nice firstPerson is just really nice 
Solved Threads: 149
firstPerson's Avatar
firstPerson firstPerson is online now Online
Nearly a Posting Virtuoso
 
1
  #3
Oct 22nd, 2009
1st) Read post 1, although if you PM, someone that knows a little math, he might help you.

2)


  1. Let A = r+5(r-2)=28
  2. Let B = 3(r+4)+5(r+2)=102
  3.  
  4.  
  5. //Break down A
  6. A = r+5(r-2) = 28
  7. = r + 5r - 10 = 28 //distributive rule
  8. = 6r - 10 = 20 //add like trms
  9. = 6r = 20 + 10 //remember switching numbers to the opposite sides mean change its operatorion from + to minus, * to / and vice-versa
  10. so, 6r = 20 + 10,
  11. 6r = 30
  12. r = 30/6 = 15/3 = 5
  1. //Break down of B
  2. Let B = 3(r+4)+5(r+2)=102
  3.  
  4. B = 3r + 12 + 10r + 20 = 102 //Distributive property
  5. = 3r + 10r + 12 + 20 = 102 // re-arrange like terms
  6. = 13r + 32 = 102 //add like terms
  7. = 13r = 102 - 32 //bring together like terms
  8. = 13r = 70
  9. = r = 70/13
I give up! 
1) What word becomes shorter if you add a letter to it? [ Solved by : niek_e ]
2) What does this sequence  equal to :  (.5u - .5a)(.5u-.5b)(.5u-.5c) ...
3) What is the 123456789 prime numer?
Ask4Answer
Reply With Quote Quick reply to this message  
Join Date: Apr 2004
Posts: 4,362
Reputation: Dave Sinkula has a brilliant future Dave Sinkula has a brilliant future Dave Sinkula has a brilliant future Dave Sinkula has a brilliant future Dave Sinkula has a brilliant future Dave Sinkula has a brilliant future Dave Sinkula has a brilliant future Dave Sinkula has a brilliant future Dave Sinkula has a brilliant future Dave Sinkula has a brilliant future Dave Sinkula has a brilliant future 
Solved Threads: 241
Team Colleague
Dave Sinkula's Avatar
Dave Sinkula Dave Sinkula is offline Offline
long time no c
 
1
  #4
Oct 22nd, 2009
Originally Posted by firstPerson View Post
A = r+5(r-2) = 28
= r + 5r - 10 = 28 //distributive rule
= 6r - 10 = 20 //add like trms
Where'd the 28 go and the 20 come from?
Last edited by Dave Sinkula; Oct 22nd, 2009 at 10:20 am.
"One of the methods used by statists to destroy capitalism consists in establishing controls that tie a given industry hand and foot, making it unable to solve its problems, then declaring that freedom has failed and stronger controls are necessary." --Ayn Rand
Reply With Quote Quick reply to this message  
Join Date: Oct 2006
Posts: 2,861
Reputation: niek_e has a reputation beyond repute niek_e has a reputation beyond repute niek_e has a reputation beyond repute niek_e has a reputation beyond repute niek_e has a reputation beyond repute niek_e has a reputation beyond repute niek_e has a reputation beyond repute niek_e has a reputation beyond repute niek_e has a reputation beyond repute niek_e has a reputation beyond repute niek_e has a reputation beyond repute 
Solved Threads: 301
Moderator
Featured Poster
niek_e's Avatar
niek_e niek_e is offline Offline
Roasting Maven
 
1
  #5
Oct 22nd, 2009
Also with B: this B = 3r + 12 + 10r + 20 = 102 //Distributive property is completely wrong. I have no idea what you're trying to do here.
Look, if r(B)=70/13=5.38... (according to you) then if you substitute 'r' with 5.38... in the original formula, you should get 102; which you don't.

the answer to B is 10. But I'm not going to show the math here, because the OP needs to learn to do his/her own damn homework.
Last edited by niek_e; Oct 22nd, 2009 at 10:50 am.
Reply With Quote Quick reply to this message  
Join Date: Dec 2008
Posts: 1,218
Reputation: firstPerson is just really nice firstPerson is just really nice firstPerson is just really nice firstPerson is just really nice 
Solved Threads: 149
firstPerson's Avatar
firstPerson firstPerson is online now Online
Nearly a Posting Virtuoso
 
0
  #6
Oct 23rd, 2009
Lol, I was high when I posted that, sorry.
I give up! 
1) What word becomes shorter if you add a letter to it? [ Solved by : niek_e ]
2) What does this sequence  equal to :  (.5u - .5a)(.5u-.5b)(.5u-.5c) ...
3) What is the 123456789 prime numer?
Ask4Answer
Reply With Quote Quick reply to this message  
Join Date: Oct 2006
Posts: 2,861
Reputation: niek_e has a reputation beyond repute niek_e has a reputation beyond repute niek_e has a reputation beyond repute niek_e has a reputation beyond repute niek_e has a reputation beyond repute niek_e has a reputation beyond repute niek_e has a reputation beyond repute niek_e has a reputation beyond repute niek_e has a reputation beyond repute niek_e has a reputation beyond repute niek_e has a reputation beyond repute 
Solved Threads: 301
Moderator
Featured Poster
niek_e's Avatar
niek_e niek_e is offline Offline
Roasting Maven
 
1
  #7
Oct 23rd, 2009
Originally Posted by firstPerson View Post
Lol, I was high when I posted that, sorry.
You shouldn't drink and drive and you should smoke and do math. That's how people come up with stuff like the Large Hadron Collider: very dangerous
Reply With Quote Quick reply to this message  
Join Date: Aug 2005
Posts: 5,266
Reputation: iamthwee is a splendid one to behold iamthwee is a splendid one to behold iamthwee is a splendid one to behold iamthwee is a splendid one to behold iamthwee is a splendid one to behold iamthwee is a splendid one to behold iamthwee is a splendid one to behold iamthwee is a splendid one to behold 
Solved Threads: 377
Featured Poster
iamthwee's Avatar
iamthwee iamthwee is offline Offline
Posting Expert
 
0
  #8
Oct 23rd, 2009
Originally Posted by firstPerson View Post
1st) Read post 1, although if you PM, someone that knows a little math, he might help you.

2)


  1. Let A = r+5(r-2)=28
  2. Let B = 3(r+4)+5(r+2)=102
  3.  
  4.  
  5. //Break down A
  6. A = r+5(r-2) = 28
  7. = r + 5r - 10 = 28 //distributive rule
  8. = 6r - 10 = 20 //add like trms
  9. = 6r = 20 + 10 //remember switching numbers to the opposite sides mean change its operatorion from + to minus, * to / and vice-versa
  10. so, 6r = 20 + 10,
  11. 6r = 30
  12. r = 30/6 = 15/3 = 5
  1. //Break down of B
  2. Let B = 3(r+4)+5(r+2)=102
  3.  
  4. B = 3r + 12 + 10r + 20 = 102 //Distributive property
  5. = 3r + 10r + 12 + 20 = 102 // re-arrange like terms
  6. = 13r + 32 = 102 //add like terms
  7. = 13r = 102 - 32 //bring together like terms
  8. = 13r = 70
  9. = r = 70/13
I thought you purposely gave him a dud answer so he would hand it in. Well done you had me fooled.
*Voted best profile in the world*
Reply With Quote Quick reply to this message  
Join Date: May 2009
Posts: 13
Reputation: Reprise is an unknown quantity at this point 
Solved Threads: 0
Reprise Reprise is offline Offline
Newbie Poster
 
0
  #9
Oct 23rd, 2009
niek_e is correct about the second equation having r = 10. I didn't see anyone give a correct answer for the first, so I will: r = 19/3.


Originally Posted by niek_e View Post
You shouldn't drink and drive and you should smoke and do math. That's how people come up with stuff like the Large Hadron Collider: very dangerous
Ha. I refuse to subscribe to the theory that the LHC could end the world.
Reply With Quote Quick reply to this message  
Join Date: Dec 2008
Posts: 1,218
Reputation: firstPerson is just really nice firstPerson is just really nice firstPerson is just really nice firstPerson is just really nice 
Solved Threads: 149
firstPerson's Avatar
firstPerson firstPerson is online now Online
Nearly a Posting Virtuoso
 
0
  #10
Oct 23rd, 2009
Originally Posted by iamthwee View Post
I thought you purposely gave him a dud answer so he would hand it in. Well done you had me fooled.
Maybe, I don't remember what I was thinking at that time.
I give up! 
1) What word becomes shorter if you add a letter to it? [ Solved by : niek_e ]
2) What does this sequence  equal to :  (.5u - .5a)(.5u-.5b)(.5u-.5c) ...
3) What is the 123456789 prime numer?
Ask4Answer
Reply With Quote Quick reply to this message  
Reply

Tags
c++, equation, math

Message:



Similar Threads
Other Threads in the C++ Forum
Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC