Ok, so this question spans from the typical "Math is/not needed for software engineering"
I do believe that math is at least partially important, but I have to admit that i know pretty little of it...
Math is very important for software engineering. It's impossible to write correct code without being able to prove things. Learning programming is really an informal education in dealing with concrete manifestations of abstract algebra. That's why you know that the following snippets of code are equivalent.
for i = 1 to n step 1
x[i] = 2 + y[i]
end for i = n to 1 step -1
x[i] = 2 + y[i]
end for i = 5 to n + 4 step 1
x[i-4] = 2 + y[i-4]
end for i = 1 to n step 1
x[i] = 1 + y[i]
end
for i = 1 to n step 1
x[i] = 1 + x[i]
end So i was wondering if there's any math-applied-to-software engineering-kind of book out there
I don't understand what your notion of "math-applied-to-software engineering" is.
What is math? You could help by answering that.