Skip to content

solving returns VecBasic of length 0 #93

Open
@levibaguley

Description

@levibaguley

I would've put this one on StackOverflow but this package seems pretty new so I thought asking you guys would be the best.
I'm trying to solve a function that looks something like this:

P == 1 / (1 + exp(-(b0 + b1 * r + b2 * t)))

It's a logistic function but I want it in terms of r. This is my attempt.

library(symengine)
#> SymEngine Version: 0.4.1
#>  _____           _____         _         
#> |   __|_ _ _____|   __|___ ___|_|___ ___ 
#> |__   | | |     |   __|   | . | |   | -_|
#> |_____|_  |_|_|_|_____|_|_|_  |_|_|_|___|
#>       |___|               |___|

use_vars(b0, b1, b2, P, t, r)
#> Initializing 'b0', 'b1', 'b2', 'P', 't', 'r'
exp <- 1L / (1L + exp(-(b0 + b1 * r + b2 * t))) - P
exp
#> (Add)    -P + (1 + exp(-(b0 + r*b1 + t*b2)))^(-1)
solve(exp, r)
#> VecBasic of length 0
#> V(  )

Is symengine unable to solve this? It isn't clear what VecBasic of length 0 means. When do you think non-polynomials will be able to be solved in this package?

R version 3.6.3 (2020-02-29)
Platform: x86_64-w64-mingw32/x64 (64-bit)
Running under: Windows 10 x64 (build 18363)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions