Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 10 of 10

Thread: Using functions in a calculator

  1. #1
    Member
    Join Date
    Feb 2012
    Posts
    173
    Thanks
    6
    Thanked 10 Times in 10 Posts

    Question Using functions in a calculator

    I'm writing a calculator program for fun that takes an input from a user, via typed commands. So far, it works very well with basic ^*/+- arithmetic, however, I want to start adding functions, such as sin(45) or ln(e) and, eventually, variables to the expressions it solves. How would one do that? I don't have any code for that purpose as I don't know how or where to start for that. If there is some code you'd like to see that would help, please ask for it, as I don't know what would help and there is too much code to post it all.

    Attached is what I have now.Calculator.zip


  2. #2
    Super Moderator
    Join Date
    Jun 2013
    Location
    So. Maryland, USA
    Posts
    5,520
    My Mood
    Mellow
    Thanks
    215
    Thanked 698 Times in 680 Posts

    Default Re: Using functions in a calculator

    Review the Math class for the functions already available. Apache has some libraries that also provide these math functions. While I think the core Java Math class will have everything you need, using an Apache library could be a good learning experience in using 3rd party libraries.

  3. #3
    Member
    Join Date
    Feb 2012
    Posts
    173
    Thanks
    6
    Thanked 10 Times in 10 Posts

    Default Re: Using functions in a calculator

    I know how to use the Math class and have used third party libraries in the past for mathematical purposes. My question is how to solve those functions inside of an expression, ie 3+sin(2pi)^(-3). The Math library only makes solving the functions themselves easier, but not detecting them as functions, sorting them, and then going throw and solving them. The solving part is what I can do.

  4. #4
    Super Moderator Norm's Avatar
    Join Date
    May 2010
    Location
    Eastern Florida
    Posts
    25,042
    Thanks
    63
    Thanked 2,708 Times in 2,658 Posts

    Default Re: Using functions in a calculator

    Are you asking how to parse the statement: 3+sin(2pi)^(-3)
    If you don't understand my answer, don't ignore it, ask a question.

  5. #5
    Super Moderator
    Join Date
    Jun 2013
    Location
    So. Maryland, USA
    Posts
    5,520
    My Mood
    Mellow
    Thanks
    215
    Thanked 698 Times in 680 Posts

    Default Re: Using functions in a calculator

    It sounds like it's the solving part you CAN do, but it's parsing the user's commands into the correct formulas that has you stumped. This is a common early project, so try searching for "java console calculator" or similar. If you want help with specific code or attempts you've made to do this, then post that code in code tags and describe what help you need, ask specific questions.

  6. #6
    Member
    Join Date
    Feb 2012
    Posts
    173
    Thanks
    6
    Thanked 10 Times in 10 Posts

    Default Re: Using functions in a calculator

    Norm, yes, at least, just the sin(2pi) part.

  7. #7
    Super Moderator
    Join Date
    Jun 2013
    Location
    So. Maryland, USA
    Posts
    5,520
    My Mood
    Mellow
    Thanks
    215
    Thanked 698 Times in 680 Posts

    Default Re: Using functions in a calculator

    Math.sin( 2 * Math.PI ) ?

    But if you know how to use the Math class as you said in post #3, this should already be familiar to you, so I'm still missing something.

  8. #8
    Super Moderator Norm's Avatar
    Join Date
    May 2010
    Location
    Eastern Florida
    Posts
    25,042
    Thanks
    63
    Thanked 2,708 Times in 2,658 Posts

    Default Re: Using functions in a calculator

    Is there an operator missing between the 2 and pi?

    What syntax rules are there for that expression? For example:
    The () are delimiters.
    The method name comes before the (
    the args for the method come before the )
    If you don't understand my answer, don't ignore it, ask a question.

  9. #9
    Member
    Join Date
    Feb 2012
    Posts
    173
    Thanks
    6
    Thanked 10 Times in 10 Posts

    Default Re: Using functions in a calculator

    OK, let's slow down here. Here's how I parse equations right now, minus functions and variables (why I'm here).

    1. Take an input expression
    2. Set up the equation for input into the parser
    - get rid of space characters
    - replace "--" with "+"
    - detect negative values and replace them with (0-value)
    3. Send to the parser
    - convert the equation from infix to postfix (RPN notation)
    4. Simplify the postfix expression
    - I'll post the code for the simplification algorithm

    Here's what I don't know how to do:
    1. how to interpret when a user inputs a function into the input
    2. where/how to parse it
    3. when to solve the called functions (sin, cos, tan, etc...)

    Here's what I do know:
    1. simplifying and parsing basic arithmetic
    2. how to evaluate the called functions (Math.sin(2*Math.PI) I understand)

    Here's how I evaluate/simplify expressions:
    public static String convertToPostfix(String infix) {
    		// Return a postfix representation of the expression in infix.
     
    		Stack operatorStack = new Stack();  // the stack of operators
     
    		char c;       // the first character of a token
     
    		StringTokenizer parser = new StringTokenizer(infix,"+-*/^() ",true);
    		// StringTokenizer for the input string
     
    		StringBuffer postfix = new StringBuffer(infix.length());  // result
     
    		// Process the tokens.
    		while (parser.hasMoreTokens()) {     
     
    			String token = parser.nextToken();          // get the next token
    			// and let c be
    			c = token.charAt(0);         // the first character of this token
     
    			if ( (token.length() == 1) && isOperator(c) ) {    // if token is
    				//  an operator
     
     
    				while (!operatorStack.empty() &&
    						!lowerPrecedence(((String)operatorStack.peek()).charAt(0), c))
    					// (Operator on the stack does not have lower precedence, so
    					//  it goes before this one.)
     
    					postfix.append(" ").append((String)operatorStack.pop());
     
    				if (c==')') {
    					// Output the remaining operators in the parenthesized part.
    					String operator = (String)operatorStack.pop();
    					while (operator.charAt(0)!='(') {
    						postfix.append(" ").append(operator);
    						operator = (String)operatorStack.pop();  
    					}
    				}
    				else
    					operatorStack.push(token);// Push this operator onto the stack.
     
    			}
    			else if ( (token.length() == 1) && isSpace(c) ) {    // else if
    				// token was a space
    				;                                                  // ignore it
    			}
    			else {  // (it is an operand)
    				postfix.append(" ").append(token);  // output the operand
    			}//end if
     
    		}// end while for tokens
     
    		// Output the remaining operators on the stack.
    		while (!operatorStack.empty())
    			postfix.append(" ").append((String)operatorStack.pop());
     
    		// Return the result.
     
    		return postfix.toString();
     
     
    	}//end convertToPostfix
    //Evaluate and simplify
    	public static String simplify(String equ)
    	{
    		//System.out.println(equ);
    		equ = convertToPostfix(equ);//convert to post fix
    		//System.out.println(equ);
    		int index = 0;
    		while(equ.endsWith("+")||equ.endsWith("-")|| equ.endsWith("*")|| equ.endsWith("/")|| equ.endsWith("^")) //while there are still unsolved operators
    		{
    			index = 0;//start all the way to the left
    			while((!isOperator(equ.charAt(index))/*||
    					minusThatIsNegative(equ,index)*/)&&
    					index<equ.length()-1)//search for first operator
    			{
    				index++;
    				if(minusThatIsNegative(equ,index))
    				{
    					index++;
    				}
    			}
     
    			//find location of previous two numbers
    			//numbers will be three spaces back
    			int spaces = 0;
    			int search = index;
    			while(spaces<3&&search>0)
    			{
    				if(isSpace(equ.charAt(search)))
    					spaces++;
    				search--;
    			}
     
    			String expr = equ.substring(search+1,index+1).trim();//copy numbers and operator to a string
    			BigDecimal number1,number2;//find the first and second number
    			System.out.println(":"+expr+":");
    			search = 0;
    			while(!isSpace(expr.charAt(search)))//finds first number
    			{
    				search++;
    			}
    			System.out.println(":" + expr.substring(0, search+1).trim()+":");
    			number1 = new BigDecimal(expr.substring(0, search+1).trim());//sets it to a string
    			System.out.println("search = " + search);
    			number2 =  new BigDecimal(expr.substring(search, expr.length()-1).trim());//sets the second number to a string
     
    			//System.out.println(number1 +"; " + number2);
     
    			String combine = "";//evaluates the problem
    			if(expr.endsWith("^"))
    			{
    				combine = Double.toString(Math.pow(number1.doubleValue(), number2.doubleValue()));
    			}
    			else if(expr.endsWith("*"))
    			{
    				combine = number1.subtract(number2).toString();
    			}
    			else if(expr.endsWith("/"))
    			{
    				try{
    				combine = number1.divide(number2,10, RoundingMode.HALF_EVEN).toString();
    				}catch(ArithmeticException e)
    				{
    					return "Error: cannot divide by zero.";
    				}
    			}
    			else if(expr.endsWith("+"))
    			{
    				combine = number1.add(number2).toString();
    			}
    			else if(expr.endsWith("-"))
    			{
    				combine = number1.subtract(number2).toString();
    			}
     
    			equ = equ.replace(expr, combine);
    			System.out.println("equ = " + equ + "\n");
    		}
    		return equ; 
    	}
    public static boolean isOperator(char c) { // Tell whether c is an operator.
     
    		return c == '+'  ||  c == '-'  ||  c == '*'  ||  c == '/'  ||  c == '^'
    				|| c=='(' || c==')';
     
    	}//end isOperator
     
    	public static boolean isSpace(char c) {  // Tell whether c is a space.
     
    		return (c == ' ');
     
    	}//end isSpace
     
    	public static boolean isNumber(char c) {
    		return c=='1'||c=='2'||c=='3'||c=='4'||c=='5'||c=='6'||c=='7'||c=='8'||c=='9'||c=='0'||c=='.';
    	}
    public static boolean minusThatIsNegative(String expr, int indexOfMinus)
    	{
    		if(indexOfMinus >= expr.length()-2)
    			return false;
    		if(expr.charAt(indexOfMinus)!='-')
    			return false;
    		else if(!isNumber(expr.charAt(indexOfMinus+1)))
    			return false;
    		else
    			return true;
     
    	}

  10. #10
    Super Moderator Norm's Avatar
    Join Date
    May 2010
    Location
    Eastern Florida
    Posts
    25,042
    Thanks
    63
    Thanked 2,708 Times in 2,658 Posts

    Default Re: Using functions in a calculator

    when a user inputs a function into the input
    That has to do with the syntax rules. See post#8.
    If you don't understand my answer, don't ignore it, ask a question.

Similar Threads

  1. 1. Built a calculator that contains the following functions
    By karem2012 in forum What's Wrong With My Code?
    Replies: 1
    Last Post: November 27th, 2012, 10:02 AM
  2. How this GUI functions
    By mathobject in forum Java Programming Tutorials
    Replies: 3
    Last Post: October 15th, 2012, 08:10 AM
  3. Hash Functions
    By Blueshark in forum Java Theory & Questions
    Replies: 3
    Last Post: July 2nd, 2012, 03:04 PM
  4. need help with using trig functions
    By Tdogg in forum What's Wrong With My Code?
    Replies: 3
    Last Post: July 1st, 2012, 06:47 AM
  5. Directing JButtons to functions?
    By scopolamine in forum What's Wrong With My Code?
    Replies: 1
    Last Post: April 10th, 2011, 11:22 AM