Recent content by opaquin

  1. O

    Programming project. blackjack, String array issue

    Thanks...tomorrow I'm going to get my eyes checked.
  2. O

    Programming project. blackjack, String array issue

    Not sure what's going one, as soon as I remove the line with String[] arraySuit... all errors go away. With that statement in I get errors on several lines. Cannot figure out what's wrong. /* * Semester Project * Blackjack Class */ package project; import java.util.*; /** *...
  3. O

    Find the work done by the force field F on particle moving along path

    r(t) = _ i + _ j, _ <= t <= _ r(t) = (t)i + (t^3)j, 0 <= t <= 6 r'(t) = <1, 3t^2) am I on the right track?
  4. O

    Find the work done by the force field F on particle moving along path

    in that case, would I just evaluate the line integral? ∫ f(x(t),y(t))||r'||
  5. O

    Find the work done by the force field F on particle moving along path

    Homework Statement Find the work done by the force field F on particle moving along path F(x,y) = -xi + 6yj, <I>C</I>: y = x^3 from (0,0) to (6,216) The Attempt at a Solution Drew the graph in the xy plane (y = x^3 is upper limit, x = 0 is lower limit) W = F ° r'(t) dt Vector field is...
  6. O

    Comp Sci Java GUI program determining retail price, does not finish running

    thank you! Not going to make that mistake again. future code posts will have code tags, sorry 'bout that.
  7. O

    Comp Sci Java GUI program determining retail price, does not finish running

    Homework Statement Just trying to finish up this assignment, no errors. I run the program, enter a value and a percentage, then click calculate. Program just runs, never displays results. Check my code below, let me know if something is wrong. Driver: package ch7pc1; import javax.swing.*...
  8. O

    Representing a graph by a Vector-Valued Function

    ok thanks. Sounds like I wasted a lot of my time, and potentially yours as well as some bandwidth. Thanks again for your time.
  9. O

    Representing a graph by a Vector-Valued Function

    I already have the vecor valued function. I'm looking for the points of intersection. How do I find that the surfaces intersect at ((root2), -(root2), 4)?
  10. O

    Representing a graph by a Vector-Valued Function

    Homework Statement Sketch the space curve represented by the intersection of the surfaces. Then represent the curve by a vector-valued function using the given parameter. Homework Equations z = x^2 + y^2, x + y = 0, x = t The Attempt at a Solution Space curve sketched (elliptic...
Back
Top