I'm currently learning about linear operators, and the chapter in my book describing them only has examples with predefined linear operators.
One of the first questions asks:
Given L([1,2]) = [-2,3] and L([1,-1]) = [5,2] find the value of L([7,5])
Since all the examples in my book explicitly give you linear operators, I am completely confused as to how to find a linear operator L.
Thanks
first write $(7,5)$ as a linear combination of $(1,2)$ and $(1,-1)$, or more generally $$ (1,0)=\frac{2}{3}(1,-1)+\frac{1}{3}(1,2), (0,1)=-\frac{1}{3}(1,-1)+\frac{1}{3}(1,2). $$ so $(7,5)=7(1,0)+5(0,1)=3(1,-1)+4(1,2)$.
now because $L$ is linear we have $$ L[(7,5)]=L[3(1,-1)+4(1,2)]=3L[(1,-1)]+4L[(1,2)]=3(5,2)+4(-2,3)=(7,18). $$