Hp prime calculator Cannot Solve simple equation

Hello,
I'm trying to solve
 solve( (2)^x = (x)^2,x)
But the calculator cannot solve or am I doing somthing wrong?.
I lost my TI Nspire CX and I though that HP Prime, since is a recent modern version, were able to solve something simple as that, I am wrong. (TI Nspire solved it ).
How solve the above equation using the HP Prime? I'm seriusly thinking to return this back.
Thank you
This question was solved.
View Solution.

Oops!  Quite right.  In general, all symbolic math work should be done in the CAS; that's what it's for.  Home is intended for ordinary number-crunching, not symbolic math.  Sorry for not pointing that out.
-Joe-

Similar Messages

  • HP Prime issue on solving C=S/M equation

    Hi,
    I am trying to solve a simple equation C=S/M in the solver app.
    If I start from scratch I do get results with small numbers for S & M. However, when I use large figures (1,900,000/2,000,000), I receive a "Bad Guess(es)" error. The strangest thing is that if I use the emulator in my PC, I always get the right result without any issues. I have tried using other variables, clearing them all together and it always comes back to the same issue. I have also tried with Solver variables and user variables and it has no benefit
    It looks like the variables are not updated when I enter new values in the Numeric view of the Solver app. But that is too large an issue to really be it.
    Thanks in advance for any support.
    Carlos

    Never mind... I found the solution, however odd it is.
    I was trying to solve the easy equation C=S/R and occasionally obtain the Bad Guess(es) error when the numbers were large (C=1,900,000/2,000,000) for example. Once this happened, the solver would not even work with lower magnitude numbers.
    I noticed that it appeared that the variables in the equation were not updated when I keyed in the numbers in the Numeric view of the Solver app.
    If I performed the same solving process with the emulator in my PC, I had no issues whatsoever, regardless of the magnitude of the numbers.
    Then after reading that the latest firmware update provided the Digit Grouping option, I sort of imagined something could be wrong with it when large numbers were keyed in. Anyway, the emulator does not have this option set in the software and it worked, so it sort of led the way.
    I finally went to settings and selected a Digit Grouping option with no thousands separator and voila... it worked smoothly.
    I think it may be something related to how the numbers are displayed vs how they are stored in the variables that led to this issue.
    Hopefully if someone gets to this same issue, she/he would get some info about it. I also posted this in the Google group in case someone in the HP team may see it and directed so that in a future firmware it is solved.
    Regards,
    Carlos

  • HP Prime calculating bug

    Hi, I'll get right to the issue i'm having with my HP Prime calculator.  Recently during an exam where i was calculating the moments of inertia of certain bodies i encountered what i can only describe as a bug in the software because I can't figure any other reason why it would kick out the answer it did for such a seemingly simple function.  After I had done all the laboreous work of simplifying the differential equations I just needed to add some simple fractions.  As i have been operating this calculator for several weeks now, the only way i can get it to show a fraction in exact form is to type (number) / (number) and it shows it in exact form.  In my case and for this particular calcuation I input (3/20) - (1/7) "enter".  the answer Prime gave me was noticably unsimplified given that i needed it in simplified form.  although the numerical, non-exact value was almost correct (.00714285714309 instead of the correct value of .00714285714286), generally Prime kicks out a simplified value.  What it gave me was 214500215/30030030099 instead of 1/140.  i'm just curious if i need to do something different to get a simplified/correct answer on the first go rather than having to do a work-around.
    Thanks in advance

    If you want an exact and simplified answer on the first go, do your calculation in CAS view rather than Home view. Try this experiment.
    1. Go to CAS view, and enter your calculation (3/20)-(1/7). The Prime will respond with 1/140, the exact answer. Now press the a b/c key. The Prime will respond with 0.00714285714286, the approximate decimal equivalent. Keep pressing the a b/c key, and the Prime will toggle between the two answers.
    2. Now try the same steps in Home view. The Prime will toggle between 0.007142857143 and 214500215/30030030099.
    Remember, the true decimal value for 1/140 is an infinite repeating number. Since every calculator can store only a finite number of digits, it must truncate the value after a set number of digits, and this introduces a small error. The big fraction you got in Home view is not wrong, and it's certainly not a bug. It's just that Home view is not designed to handle exact values. The CAS, on the other hand, is designed to handle exact values, so when you tell it to show an approximate answer, its decimal form will be closer to the exact value, namely, 1/140.
    The moral of the story is, use CAS view when you want exact values and Home view when you want approximate values. I tell my students to use fractions whenever possible (since those are usually exact) rather than converting them to decimal values. It's far easier to use 1/3 than 0.33333....[infinite number of 3s go here].

  • Prime calculator stuck in radians?

    Hi there, this is my first post on this forum site and hopefully I do all this correct. But my question is how do you switch between radians and degrees (as far as modes) on the HP Prime calculator? I thought it was touch the top right corner and then touch either of the symbols? I could have swore that was the way i did it before; but today when I went to switch to degrees the screen was unresponsive when that drop down menu would appear. So then from the CAS screen I went into settings and tried to change the mode there, and I could select between the two but when I would go back to the CAS screen and then back to the settings screen to see if it did indeed stay, the drop down bar would say radians again... I've tried the reset button on the back and no luck. Is there some setting that I might have turned on so it won't change between modes? I also haven't messed with the firmware at all; all I've done is take it out of the box and charge it up and use it. I've had it now since about last November and as far as I can remember this function used to work.
    Ok update if anyone reads this ... I have found that within the app "function" I can not switch between radians/degrees. I am just currious as to why im not able to do so if anyone would like to comment?
    Thanks, Nick
    This question was solved.
    View Solution.

    Here's one possible reason for what you were experiencing.  Each app can have its own private radian/degree setting in the "Symbolic Setup" screen.  (Shift Symb)  When an app has the angle mode set here, it usually cannot be changed elsewhere.  To restore your ability to set the angle mode in the usual three places (Home Settings, CAS Settings, and the battery icon popup box), press Shift Symb and change the angle setting there to "System".
    -Joe-

  • How to create simple equation automation

    Hello,
    Is it possible to create a calculator automation? I have to do this same simple equation many times in the day and would love if there was an automation to make things faster. Any thoughts would be very apprecaited! 
    (inputed number) divided by 1.074 = 
    Thanks,
    Anthony

    Something like this?
    property previous : {return, return, return} -- a list of previous equations
    property theNumber : 0 -- the previous number
    repeat -- forever
       set goodNumber to false
       repeat until goodNumber
          try
             set theNumber to text returned of (display dialog "Previous equations: " & return & (previous as text) & return & "Enter a number:" default answer theNumber as text) as number
             set theAnswer to theNumber / 1.074
             set goodNumber to true
          on error errmess number errnum -- not a number
             log errmess
             if errnum is -128 then error errmess number errnum -- user canceled, pass it on
          end try
       end repeat
       -- display dialog (theNumber as text) & " / 1.074 = " & theAnswer with title "The Answer" buttons {"OK"} default button 1 giving up after 2
       set end of previous to (tab & (theNumber as text) & " / 1.074 = " & theAnswer & return)
       if (count previous) > 3 then set previous to items -3 thru -1 of previous -- just the last 3
    end repeat

  • Solving Differential Equation - getting strange results.

    Hi, i am using LabView to model the mathematic pendulum which comes down to solving the quation numericaly:
    where w is constant and 0 is an angle between the pendulum's cord and the vertical which i want to plot against time. I built this very simple model to solve this equation (this is what our teacher showed us) [x is the angle]
    and this is what i get:
    "fi" is the starting angle. The result is a cosine , as it is to be expected, with the right period, but why the amplitude is so low? Am i missing something here? No matter how i change the initial value, the amplitude is always 5 oders of magnitude lower. It wouldnt be a problem, since what we are required is to solve the equation, but when i want to factor that in the equation above 0 should be sin0 , the problem arises - sinx for so low x , is...x. So my questions are:
    - am i setting the initial conditions wrong?
    - has the value of dt anything to do with it?
    - is the method correct?
    - am i clueless? 
    A week ago i had no idea what LabView is. We were all thrown into the deep water, we were shown the method, but were not teached how the LabView works,so please, be kind.
    Thank You in advance .
    Attachments:
    pendulum.vi ‏14 KB

    Hello;
    Noise is a difficult issue to advise about.
    There are some things you can try, but the result will depend on different factors, such as, environment, lenght of cables, equipment on vicinity, etc.
    Anyways, you can try to hook up a BIAS resistor in between the ch- and AIGND on your BNC device. That resistor will bleed out the common voltage current and help on noise balancing. Another thing you can try is to hook up a simple RC low pass filter at the analog input. That might help to get rid of that noise.
    I'm also attaching an App Note that talks about Noise and some ways to get around it.
    Hope this helps.
    Filipe A.
    Applications Engineer
    National Instruments
    Attachments:
    Field_Wiring_and_Noise_Considerations.zip ‏196 KB

  • Calculation -- Cannot Aggregate

    Dear all,
    In my report. I have a dimention located in Page Item called, customer code.
    Each customer have one or more service number. Because wan to have flexibility for user to drag and drop dimension. I cannot put partion in the below statement
    COUNT_DISTINCT(service number)
    When i select 1 customer code. I can get the correct result.
    But, when I select <ALL>. the calculation cannot Aggregate. Any suggestion/solution for this?
    Very appreciate for any response.
    Best Regards,
    Casey Hoo

    Casey,
    Are you saying that you are getting unexpected results? or you are getting error message while picking <ALL> from drop down? Another question I have is that do you have any other page items beside customer code?
    I checked with two test workbooks using count_distinct, and they worked fine in 9iAS. You may have to pick show another field in the report so that the equation exactly models your intended calculations. If <ALL> functionality does not work at all, you better open a TAR with Oracle.

  • Nasty Computer Problem I Cannot Solve!

    I have got a nasty problem going on with my computer that I cannot solve. I work from home, but I worked for Microsoft 10 years ago. I am a techy person and am very security conscious but this problem has me completely stumped.
    I have reformatted my computer at least 6 times, if not more, and done complete re-installs. I have used software that deletes all partitions and overwrites every single byte on the hard drive with 1s and 0s, I have wiped the drive including the master boot
    record, I have purchased a new router and I log in as a user vs. an administrator but this problem keeps coming back with a vengeance.
    I have used several virus checkers. It does not seem to be a virus or a rootkit. It turns off the firewall, opens ports, and turns my life upside down.
    No matter what I have done thus far, this problem keeps finding me. It locks down security policies and ultimately turns me into a user and the last time I tried to block it, I lost all admin privileges, they are completely taken away.
    This problem is something I have been struggling with for months and with everything I have tried and the investigating I have done; I have determined that my computer thinks it is a work station reporting to a windows server version 8 or 12. It is obeying
    the server and overriding the simple settings that you can do in the control panel through the security policies. This person/problem has more authority than I do, it can override everything I do.
    When I turn off settings such as do not allow remote connections, it doesn’t work.
    Are there services or settings I can disable or turn off to stop my computer from turning into a controlled work station and not allow this to happen? I want this turned back into my little home computer and completely password protected.
    I appreciate any help or solutions you may be able to give me.
    Thank you.

    Hi,
    As Lewis mentioned before, what is shown up under control panel\system, computer name, domain and workgroup settings?
    If this is connected to a domain, we can run gpresult /r or rsop to check the group policy applied to the machine.
    but according to your description, I guess this machine should be a standalone workstation, so it is not controlled by any DC\servers. Since you've tried to reinstall the system for multi times, and the issue persists, so I'd like to know the installation
    media or image you used to install the system. If the media or image contains some third party program or additional settings, then that might explain why the system behaves abnormal, so maybe we can try another installation disk.
    Regarding to the badbios virus, I did some research on the internet, if we got a issue like this, it's recommended to reset the bios or update to the latest version of the BIOS. Personally, I recommended you contact PC vender or send the pc to a vender
    shop and see if they have any ideas.
    Yolanda Zhu
    TechNet Community Support

  • When i try to send email from my ipad i get the message The recipient "£)()&&£)" was rejected by the server. This has only just started to happen and I don't know why. Please help. I have tried lots of things now and cannot solve it.

    When i try to send email from my ipad i get the message The recipient "£)()&amp;&amp;£)" was rejected by the server. This has only just started to happen and I don't know why. Please can someone help. I have tried lots of things now and cannot solve it.

    "Your email account" means to tap on the name of your email account. Whatever it is listed as in the settings.
    In my mail settings, one of my email accounts is a Comcast account. I tap on the Comcast name and it brings up this window.
    Then I tap on the arrow under the Outgoing mail server smtp setting to get to the next window.
    In the resulting window, I then tap on the arrow next to the smtp server under the Primary Server setting.
    That brings up this window in which I check to make sure that my user name and password have been entered correctly. If those items are missing, enter them in the appropriate fields and then tap done.

  • Is there a limit on the size of the input for the Solve Linear Equations block?

    Hello,
    I'm trying to figure out why the Solve Linear Equations block will properly function with some sets of data and why it won't with others. What my program is doing is taking a signal and comparing it with a batch of sine and cosine waves to try and pick out patterns in the data. I have different sample sizes and it seems to work when I throw 3900 points at it. However, I have another set with 4550 points and it gives me incorrect amplitudes for my sinusoids.  Is there some limit to the size of the matrices that I can give this block? Or is there some other workaround that still allows me to keep all of my data?
    Thanks,
    David Joseph

    Well, the best way to show what I expect is to see the entire program. It's pretty evident that when looking at the graphs, something isn't right. What is supposed to happen is that the runout amplitudes are found, and then those sinusoids are subtracted from the initial data, leaving tooth to tooth data and noise. When I use the larger arrays, it seems as though not all of the data gets through (count the peaks on the product gear runout graph vs. initial) and the amplitudes are much to small, such that nothing is really taken out and the tooth to tooth data looks like the initial data.
    Also, we will also be using an FFT, but it will be limited to only determining the frequencies we should check. I've fought with the fft blocks quite a bit and I just prefer to not use them. Plus, the guy I'm writing this for wants exact answers and does not want to pad or resample the data or use windows.
    The exact number of data points isn't important (ie. 4550 vs 4551) since I use the array size block to index the for loop.
    As for typical values, they can change a lot based on materials. But, the original 3900 data point sets and the 4550 data point sets used practically identical gears. So, use the original 3900 sets I've included as references (check the RO array block numbers to compare).
    I've included 3 3900 samples, 3 4550 samples, and 3 4550 samples that have been truncated to 3900 or so as constants on the block diagram.
    Also, the check for additional runouts (like 3 per rev, 4 per rev, etc..) is optional, but if you choose to use it, use positive integers only.
    I don't know how much of this program will make sense and I have wires running everywhere.. so good luck. Keep in mind I'm only a student and I hadn't touched Labview until about 2 or 3 months ago.
    Thanks,
    David Joseph
    Attachments:
    Full example.vi ‏139 KB

  • Cannot solve the ora-4030 issue in oracle11g (AIX 6.1) platform !!

    Dear Friends ,
    We are using Oracle 11g (11.2.0.1.0) in AIX 6.1 server . The oracle database has configured newly in AIX 6.1 last 7 days ago . Now we want to import our data from another 11g (R2) database . When we are going to import the data , then we face the below error after 15/20 min . the dump size near about 1 gb.
    while importing the dmp file shows the error as follows:
    $ impdp t24test/password DUMPFILE=isb_dir:R09.MB.dmp LOGFILE=isb_dir:t24test.mb.
    imp.log REMAP_SCHEMA=t24:t24test REMAP_TABLESPACE='T24DISTDATA':'T24DATAXML'
    REMAP_TABLESPACE='T24DISTINDEX':'T24INDEXXML'
    Import: Release 11.2.0.1.0 - Production on Sun Jul 18 15:34:12 2010
    Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved.
    Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 -64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options Master >able "T24TEST"."SYS_IMPORT_FULL_01" successfully loaded/unloaded
    Starting "T24TEST"."SYS_IMPORT_FULL_01": t24test/********
    DUMPFILE=isb_dir:R09.MB.dmp LOGFILE=isb_dir:t24test.mb.imp.log REMAP_SCHEMA=t24:t24test
    REMAP_TABLESPACE=T24DISTDATA:T24DATAXML REMAP_TABLESPACE=T24DISTINDEX:T24INDEXXML
    Processing object type SCHEMA_EXPORT/PRE_SCHEMA/PROCACT_SCHEMA
    Processing object type SCHEMA_EXPORT/TABLE/TABLE
    ORA-39014: One or more workers have prematurely exited.
    ORA-39029: worker 1 with process name "DW00" prematurely terminated
    ORA-31671: Worker process DW00 had an unhandled exception.
    ORA-04030: out of process memory when trying to allocate 65584 bytes
    (session heap,kuxLpxAlloc)
    ORA-06512: at "SYS.KUPW$WORKER", line 1714
    ORA-06512: at line 2We have to search the metalink note (ORA-4030) and according to that metalink note we have to check
    - Oracle user's ulimit (make all parameter unlimited , but problem is not solved)
    - SGA and PGA size (here sga is 32 GB , pga 7gb)
    - OS cpu and memoru usage are not so high @ that moment
    tuning the above three things , I cannot solve the issue ... would anybody plz help me .....to resolve the issue. is it a bug of thie Oracle version ?
    plz help ... ...
    Edited by: shipon_97 on Jul 20, 2010 1:04 PM

    I have exactly same issue on Linux platform. My db version is also 11.2.0.1. Can you let me know how do i check the soft and hard limits. I checked ulimit and it shows as below:
    address space limit (kbytes) (-M) unlimited
    core file size (blocks) (-c) 0
    cpu time (seconds) (-t) unlimited
    data size (kbytes) (-d) unlimited
    file size (blocks) (-f) unlimited
    locks (-L) unlimited
    locked address space (kbytes) (-l) 32
    nice (-e) 0
    nofile (-n) 65536
    nproc (-u) 16384
    pipe buffer size (bytes) (-p) 4096
    resident set size (kbytes) (-m) unlimited
    rtprio (-r) 0
    socket buffer size (bytes) (-b) 4096
    stack size (kbytes) (-s) 10240
    threads (-T) not supported
    process size (kbytes) (-v) unlimited
    Please suggest,

  • Question re printing from internet has been blocked without a solution. Is there any next step we can take to get this problem solved or at least to be told that Forefox cannot solve it?

    The question about Firefox not printing directly from the Internet has been asked before-but no useful solutions have been offered. It came up in 2010 and was under discussion until Jan 30 when it was locked.. I would like to re open the issue to further discussion or be notified by Firefox that they cannot solve it.

    call them, tell them you NEED a new battery installed, and they need to tell you when they can do it.  That is their job to help you! Give pushback if necessary.

  • Solving differential equations

    I m working on a project of fluids and i wannu use java programming for solving various equations..please teel me how to solve differential equation using java(partial diffential equations and integration also).thanx

    Hi!!
    Thanx for ur reply...but I have seen a program on net called JMatLink...which uses JAVA program to opens MATLAB and get the result from MATLAB and show it on its on GUI.I dont know the exact structure but i suggest u to check it and tell me how it works if u know.Sorry for bothering u again and again...but i need it badly for my project.
    explore the following link.
    http://www.held-mueller.de/JMatLink/
    Thanx

  • Solving Cubic equation

    Hello!
    I am trying to create an applet which solves cubic equations. I have managed to create the layout
    but the maths is causing problems. Well, I am a newbie and don't know much yet.
    Here's what I've done so far:
    import java.awt.*;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    public class CubicEquation extends java.applet.Applet implements ActionListener
      TextField aTxt, bTxt, cTxt, dTxt;
      int a, b, c, d;
      double f, g, h;
      Button graphBtn;
      int size = 750;
      public void init()
        setLayout(null);
        resize(1000, 800);
        Label Albl = new Label("a:");
        Albl.setBounds(780, 40, 15, 20);
        Label Blbl = new Label("b:");
        Blbl.setBounds(780, 70, 15, 20);
        Label Clbl = new Label("c:");
        Clbl.setBounds(780, 100, 15, 20);
        Label Dlbl = new Label("d:");
        Dlbl.setBounds(780, 130, 15, 20);
        Label Rlbl = new Label("Range:");
        Rlbl.setBounds(760, 170, 45, 20);
        aTxt = new TextField();
        aTxt.setBounds(800, 40, 80, 20);
        bTxt = new TextField();
        bTxt.setBounds(800, 70, 80, 20);
        cTxt = new TextField();
        cTxt.setBounds(800, 100, 80, 20);
        dTxt = new TextField();
        dTxt.setBounds(800, 130, 80, 20);
        graphBtn = new Button("Graph it");
        graphBtn.setBounds(810, 250, 55, 20);
        add(Albl);
        add(aTxt);
        aTxt.addActionListener(this);
        add(Blbl);
        add(bTxt);
        bTxt.addActionListener(this);
        add(Clbl);
        add(cTxt);
        cTxt.addActionListener(this);
        add(Dlbl);
        add(dTxt);
        dTxt.addActionListener(this);
        add(Rlbl);
        add(graphBtn);
        graphBtn.addActionListener(this);
        public void displayGraph(Graphics g)
          g.setColor(Color.cyan);
          for (int y = 0; y <= size; y = y + 10)            //Draw Grid//
            g.drawLine(1, y, size, y);
          for (int x = 0; x <= size; x = x + 10)
            g.drawLine(x, 1, x, size);
          g.setColor(Color.black);
          g.drawLine(size / 2, 0, size / 2, size);
          for (int i = 0; i <= size; i = i + 20)            //Draw y axis//
            g.drawLine(size / 2 - 5, i, size / 2 + 5, i);
         g.setColor(Color.black);
         g.drawLine(0, size / 2, size, size / 2);
         for (int j = 0; j <= size; j = j + 20)             //Draw x axis//
           g.drawLine(j, size / 2 - 5, j, size / 2 + 5);
      public void paint(Graphics g)
       f = ((3*c/a) - (b*b/a*a)) / 3;
       g = ((2*(b*b*b)) / (a*a*a)) - ((9*b*c)/(a*a)) + (27*d)/a)) / 27;
       h = ((g*g)/4) + (f*f*f)/27;
    public void actionPerformed(ActionEvent e) {
           if (e.getSource() == graphBtn) {
           a = Double.valueOf(aTxt.getText()).intValue();
           b = Double.valueOf(bTxt.getText()).intValue();
           c = Double.valueOf(cTxt.getText()).intValue();
           d = Double.valueOf(dTxt.getText()).intValue();
           if (aTxt.getText().equals("")) {
                a = 0;
           repaint();
    }Can anyone help please?

    The easiest + best way by far to solve polynomial problems is to use matrices.
    Search around on the web and see if you can find a matrix package - I think NASA had an open source free one; you might want to see if you can find that.
    Given
    |a b c|       |x|
    |d e f|    =  |y|
    |g h i|        |z|
    there is a formula that uses determinants somehow that finds the values of all the variables

  • How do I solve simultaneous equation with 3 unknowns ?

    I need to solve simultaneous equations with 3 unknowns . Can any body help out on how to go about this? Thanx.

    You did not specify what kind of equations you have....
    Are your equations linear? Check the linear algebra palette and a look at "solve linear equations:.
    LabVIEW Champion . Do more with less code and in less time .

Maybe you are looking for

  • Graphing problem with two plots

    I know how to plot two graphs on top of one another but the problem I have is as follows. I have the spectrum of a certain noisy signal which has been averaged. I then change some conditions by pressing a button and the spectrum changes to something

  • Page backgrounds with templates

    I just upgraded to DW8, but I was having the same problem in DWMX. I have a number of template based pages and now I would like to make the page background color editable. I also have a css-based menu from Project 7 which begins with an On Load comma

  • Duplicating Data in Calendar

    Everytime I look at a tables data using calendar, it displays a new duplicate iteration of each row. If I look 5 times, it displays 6 duplicates. However no rows have been added to the table. Any ideas how to fix this? Scott

  • Where can I find com.sap.portal.pcm.IObjectsManager class?

    I am using EP6 SP9. Which jar file contains com.sap.portal.pcm.IObjectsManager class? I tried using classfinder but I couldn't locate it. I am not able to compile because one of the classes I am using depends on this class....

  • Rented movie will not stream

    I am using my iPad and I use it to rent a movie the movie begins to download but I can not get it to stream to me. I can get movies I rent. On my desktop to stream. Do I have To wait for the entire movie to download to my iPad before I can view it?