search-engine icon indicating copy to clipboard operation
search-engine copied to clipboard

Parentheses

Open bsfsfn opened this issue 8 years ago • 1 comments

The search engine can't associate e.g. this: \arcsin{\frac{a}{b}} with this: \arcsin{\left(\frac{a}{b}\right)}

bsfsfn avatar Apr 07 '17 15:04 bsfsfn

@j-dec You are right, but completely ignoring parentheses will result in no difference between c(x) and cx, the former is a function but the latter is multiplication. I have to admit this is an issue approach0 has to solve in the future. If time permits, I plan to add query expansion to (partially) address this issue, for example, to expand query c(x) to query expression cx OR c(x). The other way around is similar, the difference is doing document expression expansion at indexing stage. The draw back of this method is, if there are too many parentheses in a math expression, the time complexity to enumerate all possibilities is huge.

w32zhong avatar Apr 09 '17 15:04 w32zhong