First Steps Binder

This is meant to be a gentle introduction to the symengine C++ library.

Working with Expressions

We will start by inspecting the use of Expression

#include <symengine/expression.h>
using SymEngine::Expression;
Expression x("x");
auto ex = pow(x+sqrt(Expression(2)), 6);
ex
(x+2)6
expand(ex)
8+242x+402x3+62x5+60x2+30x4+x6

Review

Written on 27 August 2020, proofread on 20 January 2021