944,099 Members | Top Members by Rank

Ad:
  • C++ Discussion Thread
  • Unsolved
  • Views: 1681
  • C++ RSS
Oct 22nd, 2009
-1

math question

Expand Post »
how do i solve this problem
r+5(r-2)=28
3(r+4)+5(r+2)=102
Similar Threads
Reputation Points: 6
Solved Threads: 0
Newbie Poster
James19142 is offline Offline
15 posts
since Oct 2009
Oct 22nd, 2009
1
Re: math question
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?
Reputation Points: 100
Solved Threads: 48
Posting Pro in Training
Grn Xtrm is offline Offline
495 posts
since Nov 2008
Oct 22nd, 2009
1
Re: math question
1st) Read post 1, although if you PM, someone that knows a little math, he might help you.

2)


C++ Syntax (Toggle Plain Text)
  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
C++ Syntax (Toggle Plain Text)
  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
Reputation Points: 840
Solved Threads: 594
Senior Poster
firstPerson is offline Offline
3,865 posts
since Dec 2008
Oct 22nd, 2009
1
Re: math question
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.
Team Colleague
Reputation Points: 2780
Solved Threads: 312
long time no c
Dave Sinkula is offline Offline
4,790 posts
since Apr 2004
Oct 22nd, 2009
1
Re: math question
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 Nick Evan; Oct 22nd, 2009 at 10:50 am.
Moderator
Featured Poster
Reputation Points: 4142
Solved Threads: 394
Industrious Poster
Nick Evan is offline Offline
4,132 posts
since Oct 2006
Oct 23rd, 2009
0
Re: math question
Lol, I was high when I posted that, sorry.
Reputation Points: 840
Solved Threads: 594
Senior Poster
firstPerson is offline Offline
3,865 posts
since Dec 2008
Oct 23rd, 2009
1
Re: math question
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
Moderator
Featured Poster
Reputation Points: 4142
Solved Threads: 394
Industrious Poster
Nick Evan is offline Offline
4,132 posts
since Oct 2006
Oct 23rd, 2009
0
Re: math question
1st) Read post 1, although if you PM, someone that knows a little math, he might help you.

2)


C++ Syntax (Toggle Plain Text)
  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
C++ Syntax (Toggle Plain Text)
  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.
Featured Poster
Reputation Points: 1536
Solved Threads: 431
Posting Expert
iamthwee is offline Offline
5,865 posts
since Aug 2005
Oct 23rd, 2009
0
Re: math question
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.


Click to Expand / Collapse  Quote originally posted by niek_e ...
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.
Reputation Points: 10
Solved Threads: 0
Newbie Poster
Reprise is offline Offline
20 posts
since May 2009
Oct 23rd, 2009
0
Re: math question
Click to Expand / Collapse  Quote originally posted by iamthwee ...
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.
Reputation Points: 840
Solved Threads: 594
Senior Poster
firstPerson is offline Offline
3,865 posts
since Dec 2008

This thread is more than three months old

No one has posted to this discussion for at least three months. Please let old threads die and do not reply to them unless you feel you have something new and valuable to contribute that absolutely must be added to make the discussion complete. Otherwise, please start a new thread in this forum instead.
Message:
Previous Thread in C++ Forum Timeline: Stack OOP
Next Thread in C++ Forum Timeline: Need Help In Executing and Compiling New to Programming





About Us | Contact Us | Advertise | Acceptable Use Policy
Forum Index | Build Custom RSS Feed


Follow us on Twitter


© 2011 DaniWeb® LLC