aspose file tools
The moose likes Programming Diversions and the fly likes Help with maths...snif,sniff Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of Mongo DB Applied Patterns this week in the MongoDB forum
or a resume review from Five Year Itch in the Jobs Discussion forum!
JavaRanch » Java Forums » Other » Programming Diversions
Reply Bookmark "Help with maths...snif,sniff" Watch "Help with maths...snif,sniff" New topic
Author

Help with maths...snif,sniff

fred fredricks
Greenhorn

Joined: Mar 04, 2003
Posts: 16
hello!!!
ok, i have to do a maths problem sheet...and i am stuck...can u guys help me out?
thanks!!
e) give the outline of an efficient algorithm to test if a point is inside a rectangle.
f) how would you test whether two circles intersect
thanks!!!
Jason Menard
Sheriff

Joined: Nov 09, 2000
Posts: 6450
Moving to Programming Diversions. Post followups there.


Jason's Blog
Bhau Mhatre
Ranch Hand

Joined: Jun 11, 2003
Posts: 199
Originally posted by mike brindley:
f) how would you test whether two circles intersect

One way is to test if the distance between their centers is less than the sum of their radii.


-Mumbai cha Bhau
HS Thomas
Ranch Hand

Joined: May 15, 2002
Posts: 3404

give the outline of an efficient algorithm to test if a point is inside a rectangle.


Given the point's co-ordinates x,y
If (x >= Xa) and (x <= Xb)
and if (y >= Ya) and (y <= Yb) then point x,y is inside the rectangle,
where the co-ordinates of the four points are Xa,Ya ; Xa,Yb ; Xb,Ya ; Xb,Yb.
Or , more concisely
Xa <= x >= Xb and Ya <= y >= Yb
I think that works ,as long as you are given the points and rectangles co-ordinates.
[ August 25, 2003: Message edited by: HS Thomas ]
Mark Herschberg
Sheriff

Joined: Dec 04, 2000
Posts: 6037
This sounds a lot like homework problems to me.
--Mark
fred fredricks
Greenhorn

Joined: Mar 04, 2003
Posts: 16
yeah its homework...i have done like 15 questions, i only have a few left...
ie, the ones i just couldnt figure out how to do, thats why i ask for help....
its ok right?
thanks...
Mark Herschberg
Sheriff

Joined: Dec 04, 2000
Posts: 6037
Some people try to get homework problems done for them by posting on this site. You were upfront about it.
I just wanted to make it clear to other posters that they shouldn't solve the problems outright, but rather give you advice and suggestions. I think that is fine.
I'm not sure if this is quite the right forum for it, in that this forum is for problem discussion, and we would have to minimize discussion in order to not do your work for you.
--Mark
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: Help with maths...snif,sniff
 
Similar Threads
Java does not seem to calculate doubles accurately
decent math forum
master degree in math helps?
Other Shuffling question
The Math class