Posts
 
Reputation
Loading chart. Please wait.
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
6
Posts with Downvotes
6
Downvoting Members
3
1 Commented Post
0 Endorsements
~5K People Reached
Favorite Forums
Favorite Tags

8 Posted Topics

Member Avatar for kulrik

I am really confused by this problem. PLEASE HELP Write a program that reads a set of floating point data values from the input. When the user indicates the end of the input, print out the count if the values, the average, and the standard deviation. The average of a …

Member Avatar for tong1
0
237
Member Avatar for Sharon5

Hi. Im havin trouble with my lab homework. Here's the problem: The Maclaurin series for arctan(x) is a formula which allows us to compute an approximation to arctan(x) as a polynomial in x. The formula is: arctan(x) = x - x3/3 + x5/5 - x7/7 + x9/9 - x11/11 + …

Member Avatar for BestJewSinceJC
0
490
Member Avatar for kulrik

Having trouble with this one: The formula y = nekt can be used for estimating growth where n is the initial amount k is a constant t is the time y is the final amount This formula will be used for estimating the bacteria growth in a lab experiment. The …

Member Avatar for kulrik
0
2K
Member Avatar for kulrik

Alright guys i got another one: In the class Mymath, create a public method called calculateFactor. The method has two two arguments of type integer and checks whether the smaller of the two integers is a factor of the larger of the two integers. The method will return a factor …

Member Avatar for javaAddict
-1
1K
Member Avatar for kulrik

Alright. Ive been at this problem for a few days know and cant figure out what's wrong with my coding. The Problem: Create a method called displayPerfectNumber in your own class named myMath. The method displayPerfectNumber asks a user to enter a integer number and displays every perfect number from …

Member Avatar for stevelg
0
541
Member Avatar for kulrik

Im having trouble with this problem: The Maclaurin series for arctan(x) is a formula which allows us to compute an approximation to arctan(x) as a polynomial in x. The formula is: arctan(x) = x - x3/3 + x5/5 - x7/7 + x9/9 - x11/11 + . . . Write a …

Member Avatar for javaAddict
0
313
Member Avatar for kulrik

Homework help Up Vote 0 Down Vote #1 24 Minutes Ago | Add to kulrik's Reputation | Flag Bad Post Im having trouble with this problem: The Maclaurin series for arctan(x) is a formula which allows us to compute an approximation to arctan(x) as a polynomial in x. The formula …

Member Avatar for darkagn
-1
84
Member Avatar for kulrik

With this problem. I finished the coding, but my output is displayed in Radians instead of Degrees. Can anyone help? Here's my coding: public class MyMath { public void displaySin() { int angle = 0; System.out.println("Angle\tSin(Angle)\tValue"); while(angle<=360){ final double RADIANCONST=180; double angleRadian; angleRadian = Math.sin((RADIANCONST*angle)/RADIANCONST); System.out.printf("%d\tSin\t(%d)\t%5.2f\n",angle,angle, angleRadian); angle = angle …

Member Avatar for kulrik
-1
85