Git Product home page Git Product logo

Comments (8)

wbhart avatar wbhart commented on May 29, 2024

Should it return the number of variable of the ring, or the actual number of variables used in that particular polynomial?

from abstractalgebra.jl.

wbhart avatar wbhart commented on May 29, 2024

Sorry I mean, should it return the variables for the ring or the poly.

from abstractalgebra.jl.

daviddelaat avatar daviddelaat commented on May 29, 2024

I was thinking the number of variables in the ring, but I hadn't thought about this ambiguity. So maybe it's better to only implement these functions for the ring?

from abstractalgebra.jl.

wbhart avatar wbhart commented on May 29, 2024

from abstractalgebra.jl.

daviddelaat avatar daviddelaat commented on May 29, 2024

Sounds good, then I think the method nvars should be defined for the ring instead of the elements.

It came up here BTW, and I think using the vars of the parent object is the only reasonable thing here right?

function AbstractAlgebra.subst(p::MPolyElem, v::Vector)
    @assert length(vars(parent(p))) == length(v) 
    r = zero(p)
    for i = 1:length(p)
        r += p.coeffs[i] * prod(v[k]^p.exps[k, i] for k = 1:length(vars(parent(p))))
    end
    r
end

from abstractalgebra.jl.

wbhart avatar wbhart commented on May 29, 2024

Yes, I think that's the only reasonable thing here. We'll have to add some more methods for substitution of only certain variables, since that is also a reasonable use case.

from abstractalgebra.jl.

wbhart avatar wbhart commented on May 29, 2024

from abstractalgebra.jl.

thofma avatar thofma commented on May 29, 2024

I agree. vars and nvars are too ambiguous for elements. They should be defined for the parent.

from abstractalgebra.jl.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.