I'm trying to solve a problem purley symbolically, my boundary conditions for my equation is 0 and L.
quick example:
My equation is
v(x,c0,c1,c2,c3):= c0+c1*x+c2*x^2+c3*x^3
x:=0
v(x,c0,c1,c2,c3)-> c0
that works fine
my problem is I would like to evaluate this at x=L as well.
So I would...